pub struct FileFlags {
pub hidden: bool,
pub directory: bool,
pub associated: bool,
pub extended_format: bool,
pub extended_permissions: bool,
pub not_final: bool,
}Expand description
File flags from directory record
Fields§
Hidden file
directory: boolDirectory (not a file)
associated: boolAssociated file
extended_format: boolExtended attribute record format
extended_permissions: boolOwner/group permissions in extended attributes
not_final: boolNot final directory record for this file
Implementations§
Trait Implementations§
impl Copy for FileFlags
impl Eq for FileFlags
impl StructuralPartialEq for FileFlags
Auto Trait Implementations§
impl Freeze for FileFlags
impl RefUnwindSafe for FileFlags
impl Send for FileFlags
impl Sync for FileFlags
impl Unpin for FileFlags
impl UnwindSafe for FileFlags
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