#[repr(C)]pub enum FileSystemType {
Directory = 0,
File = 1,
SymLink = 2,
}Expand description
Existing type in most file system.
Variants§
Trait Implementations§
Source§impl Clone for FileSystemType
impl Clone for FileSystemType
Source§fn clone(&self) -> FileSystemType
fn clone(&self) -> FileSystemType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FileSystemType
impl Debug for FileSystemType
Source§impl<'de> Deserialize<'de> for FileSystemType
impl<'de> Deserialize<'de> for FileSystemType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FileSystemType
impl PartialEq for FileSystemType
impl Copy for FileSystemType
impl Eq for FileSystemType
impl StructuralPartialEq for FileSystemType
Auto Trait Implementations§
impl Freeze for FileSystemType
impl RefUnwindSafe for FileSystemType
impl Send for FileSystemType
impl Sync for FileSystemType
impl Unpin for FileSystemType
impl UnsafeUnpin for FileSystemType
impl UnwindSafe for FileSystemType
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