pub enum StorageTableState {
Fresh,
Outdated(i64),
Invalid,
}Expand description
Storage table states
Variants§
Fresh
Data in storage table is fresh
Outdated(i64)
Data in storage table is outdated
Invalid
Data in storage table is invalid
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StorageTableState
impl RefUnwindSafe for StorageTableState
impl Send for StorageTableState
impl Sync for StorageTableState
impl Unpin for StorageTableState
impl UnwindSafe for StorageTableState
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more