pub enum SchemaCacheLoad {
CacheHit,
Refreshed,
}Variants§
CacheHit
Loaded from local cache (fingerprint unchanged).
Refreshed
Loaded from database (cache missing/invalid or fingerprint changed).
Trait Implementations§
Source§impl Clone for SchemaCacheLoad
impl Clone for SchemaCacheLoad
Source§fn clone(&self) -> SchemaCacheLoad
fn clone(&self) -> SchemaCacheLoad
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SchemaCacheLoad
impl Debug for SchemaCacheLoad
Source§impl PartialEq for SchemaCacheLoad
impl PartialEq for SchemaCacheLoad
impl Copy for SchemaCacheLoad
impl Eq for SchemaCacheLoad
impl StructuralPartialEq for SchemaCacheLoad
Auto Trait Implementations§
impl Freeze for SchemaCacheLoad
impl RefUnwindSafe for SchemaCacheLoad
impl Send for SchemaCacheLoad
impl Sync for SchemaCacheLoad
impl Unpin for SchemaCacheLoad
impl UnwindSafe for SchemaCacheLoad
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