#[repr(u8)]pub enum FileOpKind {
Open = 0,
Read = 1,
Write = 2,
Sync = 3,
Metadata = 4,
Remove = 5,
Rename = 6,
Other = 7,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileOpKind
impl RefUnwindSafe for FileOpKind
impl Send for FileOpKind
impl Sync for FileOpKind
impl Unpin for FileOpKind
impl UnsafeUnpin for FileOpKind
impl UnwindSafe for FileOpKind
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