[][src]Struct orgize::elements::Datetime

pub struct Datetime<'a> {
    pub year: u16,
    pub month: u8,
    pub day: u8,
    pub dayname: Cow<'a, str>,
    pub hour: Option<u8>,
    pub minute: Option<u8>,
}

Datetime Struct

Fields

year: u16month: u8day: u8dayname: Cow<'a, str>hour: Option<u8>minute: Option<u8>

Implementations

impl<'_> Datetime<'_>[src]

pub fn into_owned(self) -> Datetime<'static>[src]

Trait Implementations

impl<'a> Clone for Datetime<'a>[src]

impl<'a> Debug for Datetime<'a>[src]

impl<'_> Into<DateTime<Utc>> for Datetime<'_>[src]

impl<'_, '_> Into<DateTime<Utc>> for &'_ Datetime<'_>[src]

impl<'_> Into<NaiveDate> for Datetime<'_>[src]

impl<'_, '_> Into<NaiveDate> for &'_ Datetime<'_>[src]

impl<'_> Into<NaiveDateTime> for Datetime<'_>[src]

impl<'_, '_> Into<NaiveDateTime> for &'_ Datetime<'_>[src]

impl<'_> Into<NaiveTime> for Datetime<'_>[src]

impl<'_, '_> Into<NaiveTime> for &'_ Datetime<'_>[src]

impl<'a> Serialize for Datetime<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Datetime<'a>

impl<'a> Send for Datetime<'a>

impl<'a> Sync for Datetime<'a>

impl<'a> Unpin for Datetime<'a>

impl<'a> UnwindSafe for Datetime<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.