Struct tantivy_common::DateTime

source ·
pub struct DateTime { /* private fields */ }
Expand description

A date/time value with nanoseconds precision.

This timestamp does not carry any explicit time zone information. Users are responsible for applying the provided conversion functions consistently. Internally the time zone is assumed to be UTC, which is also used implicitly for JSON serialization.

All constructors and conversions are provided as explicit functions and not by implementing any From/Into traits to prevent unintended usage.

Implementations§

source§

impl DateTime

source

pub const MIN: DateTime = _

Minimum possible DateTime value.

source

pub const MAX: DateTime = _

Maximum possible DateTime value.

source

pub const fn from_timestamp_secs(seconds: i64) -> Self

Create new from UNIX timestamp in seconds

source

pub const fn from_timestamp_millis(milliseconds: i64) -> Self

Create new from UNIX timestamp in milliseconds

source

pub const fn from_timestamp_micros(microseconds: i64) -> Self

Create new from UNIX timestamp in microseconds.

source

pub const fn from_timestamp_nanos(nanoseconds: i64) -> Self

Create new from UNIX timestamp in nanoseconds.

source

pub fn from_utc(dt: OffsetDateTime) -> Self

Create new from OffsetDateTime

The given date/time is converted to UTC and the actual time zone is discarded.

source

pub fn from_primitive(dt: PrimitiveDateTime) -> Self

Create new from PrimitiveDateTime

Implicitly assumes that the given date/time is in UTC! Otherwise the original value must only be reobtained with Self::into_primitive().

source

pub const fn into_timestamp_secs(self) -> i64

Convert to UNIX timestamp in seconds.

source

pub const fn into_timestamp_millis(self) -> i64

Convert to UNIX timestamp in milliseconds.

source

pub const fn into_timestamp_micros(self) -> i64

Convert to UNIX timestamp in microseconds.

source

pub const fn into_timestamp_nanos(self) -> i64

Convert to UNIX timestamp in nanoseconds.

source

pub fn into_utc(self) -> OffsetDateTime

Convert to UTC OffsetDateTime

source

pub fn into_offset(self, offset: UtcOffset) -> OffsetDateTime

Convert to OffsetDateTime with the given time zone

source

pub fn into_primitive(self) -> PrimitiveDateTime

Convert to PrimitiveDateTime without any time zone

The value should have been constructed with Self::from_primitive(). Otherwise the time zone is implicitly assumed to be UTC.

source

pub fn truncate(self, precision: DateTimePrecision) -> Self

Truncates the microseconds value to the corresponding precision.

Trait Implementations§

source§

impl BinarySerializable for DateTime

source§

fn serialize<W: Write + ?Sized>(&self, writer: &mut W) -> Result<()>

Serialize
source§

fn deserialize<R: Read>(reader: &mut R) -> Result<Self>

Deserialize
source§

fn num_bytes(&self) -> u64

source§

impl Clone for DateTime

source§

fn clone(&self) -> DateTime

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DateTime

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DateTime

source§

fn default() -> DateTime

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for DateTime

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for DateTime

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for DateTime

source§

fn cmp(&self, other: &DateTime) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for DateTime

source§

fn eq(&self, other: &DateTime) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for DateTime

source§

fn partial_cmp(&self, other: &DateTime) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for DateTime

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for DateTime

source§

impl Eq for DateTime

source§

impl StructuralPartialEq for DateTime

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,