pub enum FileSystemStatus {
ReadOnly,
ReadWrite,
TransactionActive,
Closed,
}Expand description
Status of the filesystem interface
Variants§
ReadOnly
Opened in read-only mode
ReadWrite
Opened in read-write mode
TransactionActive
Transaction is active
Closed
Closed/disposed
Trait Implementations§
Source§impl Clone for FileSystemStatus
impl Clone for FileSystemStatus
Source§fn clone(&self) -> FileSystemStatus
fn clone(&self) -> FileSystemStatus
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 FileSystemStatus
Source§impl Debug for FileSystemStatus
impl Debug for FileSystemStatus
impl Eq for FileSystemStatus
Source§impl PartialEq for FileSystemStatus
impl PartialEq for FileSystemStatus
Source§fn eq(&self, other: &FileSystemStatus) -> bool
fn eq(&self, other: &FileSystemStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FileSystemStatus
Auto Trait Implementations§
impl Freeze for FileSystemStatus
impl RefUnwindSafe for FileSystemStatus
impl Send for FileSystemStatus
impl Sync for FileSystemStatus
impl Unpin for FileSystemStatus
impl UnsafeUnpin for FileSystemStatus
impl UnwindSafe for FileSystemStatus
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