pub enum FtpEntryKind {
UNKNOWN,
Directory,
File,
BlockDevice,
CharacterDevice,
Pipe,
Socket,
Symlink,
}
Expand description
Type of the ftp entry.
Variants§
Trait Implementations§
Source§impl Clone for FtpEntryKind
impl Clone for FtpEntryKind
Source§fn clone(&self) -> FtpEntryKind
fn clone(&self) -> FtpEntryKind
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 FtpEntryKind
impl Debug for FtpEntryKind
Source§impl From<char> for FtpEntryKind
impl From<char> for FtpEntryKind
Source§impl PartialEq for FtpEntryKind
impl PartialEq for FtpEntryKind
Source§impl TryFrom<&str> for FtpEntryKind
impl TryFrom<&str> for FtpEntryKind
impl Copy for FtpEntryKind
impl StructuralPartialEq for FtpEntryKind
Auto Trait Implementations§
impl Freeze for FtpEntryKind
impl RefUnwindSafe for FtpEntryKind
impl Send for FtpEntryKind
impl Sync for FtpEntryKind
impl Unpin for FtpEntryKind
impl UnwindSafe for FtpEntryKind
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