Enum feattle_core::last_reload::LastReload [−][src]
Store details of the last time the data was synchronized by calling
crate::Feattles::reload().
Variants
The data was never updated and all feattles carry their default values.
The reload finished with success, but no data was found. All feattle carry their default values.
The reload finished with success.
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]
fn clone(&self) -> LastReload[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for LastReload[src]
impl Debug for LastReload[src]
impl Eq for LastReload[src]
impl PartialEq<LastReload> for LastReload[src]
fn eq(&self, other: &LastReload) -> bool[src]
fn ne(&self, other: &LastReload) -> bool[src]
impl StructuralEq for LastReload[src]
impl StructuralPartialEq for LastReload[src]
Auto Trait Implementations
impl RefUnwindSafe for LastReload
impl Send for LastReload
impl Sync for LastReload
impl Unpin for LastReload
impl UnwindSafe for LastReload
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,