#[repr(u64)]pub enum NSDirectoryEnumerationOptions {
None = 0,
SkipsSubdirectoryDescendants = 1,
SkipsPackageDescendants = 2,
SkipsHiddenFiles = 4,
IncludesDirectoriesPostOrder = 8,
ProducesRelativePathUrls = 16,
}
Variants§
None = 0
SkipsSubdirectoryDescendants = 1
SkipsPackageDescendants = 2
SkipsHiddenFiles = 4
IncludesDirectoriesPostOrder = 8
ProducesRelativePathUrls = 16
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NSDirectoryEnumerationOptions
impl RefUnwindSafe for NSDirectoryEnumerationOptions
impl Send for NSDirectoryEnumerationOptions
impl Sync for NSDirectoryEnumerationOptions
impl Unpin for NSDirectoryEnumerationOptions
impl UnwindSafe for NSDirectoryEnumerationOptions
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