Trait ChronoFieldInner

Source
pub trait ChronoFieldInner:
    Debug
    + Copy
    + Scalar {
    // Required methods
    fn from_now() -> Self;
    fn from_base(base: DateTime<FixedOffset>) -> Self;
    fn minus(&self, duration: Duration) -> Self;
    fn to_json(&self) -> Value;
}

Required Methods§

Source

fn from_now() -> Self

Source

fn from_base(base: DateTime<FixedOffset>) -> Self

Source

fn minus(&self, duration: Duration) -> Self

Source

fn to_json(&self) -> Value

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§