pub enum FileEntryType {
Directory,
File,
VersionedFile,
}Expand description
Type of file system entry.
Variants§
Directory
A directory that may contain other files or directories.
File
A regular file (not versioned).
VersionedFile
A versioned file with multiple versions stored.
Trait Implementations§
Source§impl Clone for FileEntryType
impl Clone for FileEntryType
Source§fn clone(&self) -> FileEntryType
fn clone(&self) -> FileEntryType
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 ComposeSchema for FileEntryType
impl ComposeSchema for FileEntryType
Source§impl Debug for FileEntryType
impl Debug for FileEntryType
Source§impl Serialize for FileEntryType
impl Serialize for FileEntryType
Source§impl ToSchema for FileEntryType
impl ToSchema for FileEntryType
impl Copy for FileEntryType
Auto Trait Implementations§
impl Freeze for FileEntryType
impl RefUnwindSafe for FileEntryType
impl Send for FileEntryType
impl Sync for FileEntryType
impl Unpin for FileEntryType
impl UnwindSafe for FileEntryType
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