pub enum EntryStatus {
Complete,
Partial,
NotFound,
}
Expand description
The availability status of an entry in a store.
Variants§
Complete
The entry is completely available.
Partial
The entry is partially available.
NotFound
The entry is not in the store.
Trait Implementations§
Source§impl Clone for EntryStatus
impl Clone for EntryStatus
Source§fn clone(&self) -> EntryStatus
fn clone(&self) -> EntryStatus
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 EntryStatus
impl Debug for EntryStatus
Source§impl PartialEq for EntryStatus
impl PartialEq for EntryStatus
impl Eq for EntryStatus
impl StructuralPartialEq for EntryStatus
Auto Trait Implementations§
impl Freeze for EntryStatus
impl RefUnwindSafe for EntryStatus
impl Send for EntryStatus
impl Sync for EntryStatus
impl Unpin for EntryStatus
impl UnwindSafe for EntryStatus
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