pub enum FileCloseAction {
Deleted,
Modified,
NoModification,
}
Variants§
Deleted
File has been closed and deleted
Modified
File has been close and the contents modified
NoModification
File has been closed but the contents have not changed
Trait Implementations§
Source§impl Clone for FileCloseAction
impl Clone for FileCloseAction
Source§fn clone(&self) -> FileCloseAction
fn clone(&self) -> FileCloseAction
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 FileCloseAction
impl Debug for FileCloseAction
Source§impl Ord for FileCloseAction
impl Ord for FileCloseAction
Source§fn cmp(&self, other: &FileCloseAction) -> Ordering
fn cmp(&self, other: &FileCloseAction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FileCloseAction
impl PartialEq for FileCloseAction
Source§impl PartialOrd for FileCloseAction
impl PartialOrd for FileCloseAction
impl Eq for FileCloseAction
impl StructuralPartialEq for FileCloseAction
Auto Trait Implementations§
impl Freeze for FileCloseAction
impl RefUnwindSafe for FileCloseAction
impl Send for FileCloseAction
impl Sync for FileCloseAction
impl Unpin for FileCloseAction
impl UnwindSafe for FileCloseAction
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