pub enum CDiskType {
Either,
Directory,
File,
}Expand description
Identifies the type of src on the disk when attempting to see if it disk_exists or not.
Variants§
Either
Does not matter the type, just does it exist or not.
Directory
Only true if it is a directory.
File
Only true if it is a file.
Auto Trait Implementations§
impl Freeze for CDiskType
impl RefUnwindSafe for CDiskType
impl Send for CDiskType
impl Sync for CDiskType
impl Unpin for CDiskType
impl UnsafeUnpin for CDiskType
impl UnwindSafe for CDiskType
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