#[repr(u8)]pub enum ModeOfOperation {
AddFile = 0,
DeleteFile = 1,
ReplaceFile = 2,
ReadFile = 3,
ReadDir = 4,
}Variants§
Trait Implementations§
Source§impl Clone for ModeOfOperation
impl Clone for ModeOfOperation
Source§fn clone(&self) -> ModeOfOperation
fn clone(&self) -> ModeOfOperation
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 ModeOfOperation
impl Debug for ModeOfOperation
Source§impl FrameRead<'_> for ModeOfOperation
impl FrameRead<'_> for ModeOfOperation
Source§impl FrameWrite for ModeOfOperation
impl FrameWrite for ModeOfOperation
Source§impl Ord for ModeOfOperation
impl Ord for ModeOfOperation
Source§fn cmp(&self, other: &ModeOfOperation) -> Ordering
fn cmp(&self, other: &ModeOfOperation) -> 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 ModeOfOperation
impl PartialEq for ModeOfOperation
Source§impl PartialOrd for ModeOfOperation
impl PartialOrd for ModeOfOperation
impl Eq for ModeOfOperation
impl StructuralPartialEq for ModeOfOperation
Auto Trait Implementations§
impl Freeze for ModeOfOperation
impl RefUnwindSafe for ModeOfOperation
impl Send for ModeOfOperation
impl Sync for ModeOfOperation
impl Unpin for ModeOfOperation
impl UnsafeUnpin for ModeOfOperation
impl UnwindSafe for ModeOfOperation
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