#[repr(u32)]pub enum VolumeState {
Scanning = 0,
Ready = 1,
Rescanning = 2,
Failed = 3,
}Expand description
Lifecycle state of a volume’s index (FmfVolumeStatus.state).
Variants§
Scanning = 0
Initial full scan in progress; the index is not yet complete.
Ready = 1
Index is complete and serving queries.
Rescanning = 2
A full re-scan is in progress while the prior index keeps serving.
Failed = 3
The volume could not be indexed.
Trait Implementations§
Source§impl Clone for VolumeState
impl Clone for VolumeState
Source§fn clone(&self) -> VolumeState
fn clone(&self) -> VolumeState
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 VolumeState
impl Debug for VolumeState
Source§impl PartialEq for VolumeState
impl PartialEq for VolumeState
impl Copy for VolumeState
impl Eq for VolumeState
impl StructuralPartialEq for VolumeState
Auto Trait Implementations§
impl Freeze for VolumeState
impl RefUnwindSafe for VolumeState
impl Send for VolumeState
impl Sync for VolumeState
impl Unpin for VolumeState
impl UnsafeUnpin for VolumeState
impl UnwindSafe for VolumeState
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