Enum feattle_core::last_reload::LastReload[][src]

pub enum LastReload {
    Never,
    NoData {
        reload_date: DateTime<Utc>,
    },
    Data {
        reload_date: DateTime<Utc>,
        version: i32,
        version_date: DateTime<Utc>,
    },
}

Store details of the last time the data was synchronized by calling crate::Feattles::reload().

Variants

Never

The data was never updated and all feattles carry their default values.

NoData

The reload finished with success, but no data was found. All feattle carry their default values.

Fields of NoData

reload_date: DateTime<Utc>
Data

The reload finished with success.

Fields of Data

reload_date: DateTime<Utc>version: i32version_date: DateTime<Utc>

Implementations

impl LastReload[src]

pub fn reload_date(self) -> Option<DateTime<Utc>>[src]

Indicate when, if ever, a reload finished with success.

pub fn version(self) -> Option<i32>[src]

Indicate which is, if any, the current data version. Note that the value 0 is used for LastReload::NoData.

pub fn version_date(self) -> Option<DateTime<Utc>>[src]

Indicate when, if known, this data version was created.

Trait Implementations

impl Clone for LastReload[src]

impl Copy for LastReload[src]

impl Debug for LastReload[src]

impl Eq for LastReload[src]

impl PartialEq<LastReload> for LastReload[src]

impl StructuralEq for LastReload[src]

impl StructuralPartialEq for LastReload[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.