#[repr(u32)]pub enum NtfsFileNameFlags {
Show 14 variants
ReadOnly = 1,
Hidden = 2,
System = 4,
Archive = 32,
Device = 64,
Normal = 128,
Temporary = 256,
SparseFile = 512,
ReparsePoint = 1_024,
Compressed = 2_048,
Offline = 4_096,
NotContentIndexed = 8_192,
Encrypted = 16_384,
IsDirectory = 268_435_456,
}
Variants§
ReadOnly = 1
Hidden = 2
System = 4
Archive = 32
Device = 64
Normal = 128
Temporary = 256
SparseFile = 512
ReparsePoint = 1_024
Compressed = 2_048
Offline = 4_096
NotContentIndexed = 8_192
Encrypted = 16_384
IsDirectory = 268_435_456
Auto Trait Implementations§
impl Freeze for NtfsFileNameFlags
impl RefUnwindSafe for NtfsFileNameFlags
impl Send for NtfsFileNameFlags
impl Sync for NtfsFileNameFlags
impl Unpin for NtfsFileNameFlags
impl UnwindSafe for NtfsFileNameFlags
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