pub enum FsAction {
None = 0,
Execute = 1,
Write = 2,
WriteExecute = 3,
Read = 4,
ReadExecute = 5,
ReadWrite = 6,
PermAll = 7,
}
Variants§
Trait Implementations§
impl StructuralPartialEq for FsAction
Auto Trait Implementations§
impl Freeze for FsAction
impl RefUnwindSafe for FsAction
impl Send for FsAction
impl Sync for FsAction
impl Unpin for FsAction
impl UnwindSafe for FsAction
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