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 (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 FtpEntryKind
Source§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§fn eq(&self, other: &FtpEntryKind) -> bool
fn eq(&self, other: &FtpEntryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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