[][src]Enum biblatex::DateValue

pub enum DateValue {
    At(Datetime),
    After(Datetime),
    Before(Datetime),
    Between(DatetimeDatetime),
}

A single date or a range of dates.

Variants

A single date.

After(Datetime)

A range of dates with known start, but open end.

Before(Datetime)

A range of dates with open start, but known end.

Between(DatetimeDatetime)

A range of dates with known start and end.

Trait Implementations

impl Clone for DateValue[src]

impl Copy for DateValue[src]

impl Debug for DateValue[src]

impl Eq for DateValue[src]

impl PartialEq<DateValue> for DateValue[src]

impl StructuralEq for DateValue[src]

impl StructuralPartialEq for DateValue[src]

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> 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.