pub enum RemoteEntryKind {
File,
Directory,
SymbolicLink,
Fifo,
Socket,
BlockDevice,
CharacterDevice,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RemoteEntryKind
impl Clone for RemoteEntryKind
Source§fn clone(&self) -> RemoteEntryKind
fn clone(&self) -> RemoteEntryKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RemoteEntryKind
Source§impl Debug for RemoteEntryKind
impl Debug for RemoteEntryKind
Source§impl<'de> Deserialize<'de> for RemoteEntryKind
impl<'de> Deserialize<'de> for RemoteEntryKind
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
impl Eq for RemoteEntryKind
Source§impl PartialEq for RemoteEntryKind
impl PartialEq for RemoteEntryKind
Source§impl Serialize for RemoteEntryKind
impl Serialize for RemoteEntryKind
impl StructuralPartialEq for RemoteEntryKind
Auto Trait Implementations§
impl Freeze for RemoteEntryKind
impl RefUnwindSafe for RemoteEntryKind
impl Send for RemoteEntryKind
impl Sync for RemoteEntryKind
impl Unpin for RemoteEntryKind
impl UnsafeUnpin for RemoteEntryKind
impl UnwindSafe for RemoteEntryKind
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