pub enum FileKind {
Directory,
File,
}
Variants§
Implementations§
Source§impl FileKind
impl FileKind
pub fn resource_type(&self) -> ResourceType
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileKind
impl<'de> Deserialize<'de> for FileKind
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 Into<ResourceKind> for FileKind
impl Into<ResourceKind> for FileKind
Source§fn into(self) -> ResourceKind
fn into(self) -> ResourceKind
Converts this type into the (usually inferred) input type.
Source§impl Into<ResourceKindParts> for FileKind
impl Into<ResourceKindParts> for FileKind
Source§fn into(self) -> ResourceKindParts
fn into(self) -> ResourceKindParts
Converts this type into the (usually inferred) input type.
Source§impl TryFrom<ResourceKindParts> for FileKind
impl TryFrom<ResourceKindParts> for FileKind
Source§impl TryInto<FileKind> for ResourceKind
impl TryInto<FileKind> for ResourceKind
impl Eq for FileKind
impl StructuralPartialEq for FileKind
Auto Trait Implementations§
impl Freeze for FileKind
impl RefUnwindSafe for FileKind
impl Send for FileKind
impl Sync for FileKind
impl Unpin for FileKind
impl UnwindSafe for FileKind
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