pub enum FilePickerScanStatus {
Pending,
Ready,
Stale,
Error,
}Expand description
Current freshness of a file-picker directory listing.
Variants§
Pending
The directory has not been scanned yet.
Ready
The listing is complete and current.
Stale
Configuration or the directory changed and the retained listing is stale.
Error
The latest scan failed fully or partially.
Trait Implementations§
Source§impl Clone for FilePickerScanStatus
impl Clone for FilePickerScanStatus
Source§fn clone(&self) -> FilePickerScanStatus
fn clone(&self) -> FilePickerScanStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FilePickerScanStatus
Source§impl Debug for FilePickerScanStatus
impl Debug for FilePickerScanStatus
impl Eq for FilePickerScanStatus
Source§impl PartialEq for FilePickerScanStatus
impl PartialEq for FilePickerScanStatus
impl StructuralPartialEq for FilePickerScanStatus
Auto Trait Implementations§
impl Freeze for FilePickerScanStatus
impl RefUnwindSafe for FilePickerScanStatus
impl Send for FilePickerScanStatus
impl Sync for FilePickerScanStatus
impl Unpin for FilePickerScanStatus
impl UnsafeUnpin for FilePickerScanStatus
impl UnwindSafe for FilePickerScanStatus
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