[][src]Struct quatrain::ReadableDate

pub struct ReadableDate(_);

ReadableDate wraps a date and could be (de)serialize with format like Apr 4, 2010.

Implementations

impl ReadableDate[src]

pub fn new(year: i32, month: u32, day: u32) -> Self[src]

pub fn today() -> Self[src]

Create a ReadableDate for today.

Trait Implementations

impl Clone for ReadableDate[src]

impl Debug for ReadableDate[src]

impl Default for ReadableDate[src]

impl<'de> Deserialize<'de> for ReadableDate[src]

impl Display for ReadableDate[src]

impl PartialEq<ReadableDate> for ReadableDate[src]

impl PartialOrd<ReadableDate> for ReadableDate[src]

impl Serialize for ReadableDate[src]

impl StructuralPartialEq for ReadableDate[src]

impl<'_> Sub<&'_ ReadableDate> for &'_ ReadableDate[src]

type Output = Duration

The resulting type after applying the - operator.

impl Sub<ReadableDate> for ReadableDate[src]

type Output = Duration

The resulting type after applying the - operator.

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToString for T where
    T: Display + ?Sized
[src]

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.