Struct mz_repr::adt::datetime::DateTimeFieldValue
source · Expand description
Tracks a unit and a fraction from a parsed time-like string, e.g. INTERVAL ‘1.2’ DAYS.
Fields§
§unit: i64
Integer part of the value.
fraction: i64
Fractional part of value, padded to billions/has 9 digits of precision,
e.g. .5
is represented as 500000000
.
Implementations§
source§impl DateTimeFieldValue
impl DateTimeFieldValue
sourceconst FRACTIONAL_DIGIT_PRECISION: i64 = 1_000_000_000i64
const FRACTIONAL_DIGIT_PRECISION: i64 = 1_000_000_000i64
How much padding is added to the fractional portion to achieve a given precision.
e.g. with the current precision .5
is represented as 500_000_000
.
Trait Implementations§
source§impl Clone for DateTimeFieldValue
impl Clone for DateTimeFieldValue
source§fn clone(&self) -> DateTimeFieldValue
fn clone(&self) -> DateTimeFieldValue
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DateTimeFieldValue
impl Debug for DateTimeFieldValue
source§impl Default for DateTimeFieldValue
impl Default for DateTimeFieldValue
source§impl Hash for DateTimeFieldValue
impl Hash for DateTimeFieldValue
source§impl PartialEq<DateTimeFieldValue> for DateTimeFieldValue
impl PartialEq<DateTimeFieldValue> for DateTimeFieldValue
source§fn eq(&self, other: &DateTimeFieldValue) -> bool
fn eq(&self, other: &DateTimeFieldValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for DateTimeFieldValue
impl Eq for DateTimeFieldValue
impl StructuralEq for DateTimeFieldValue
impl StructuralPartialEq for DateTimeFieldValue
Auto Trait Implementations§
impl RefUnwindSafe for DateTimeFieldValue
impl Send for DateTimeFieldValue
impl Sync for DateTimeFieldValue
impl Unpin for DateTimeFieldValue
impl UnwindSafe for DateTimeFieldValue
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.