#[non_exhaustive]pub enum SFTPExtensions {
OpenSSHPosixRenameV1,
OpenSSHReversedSymlink,
OpenSSHHardlinkV1,
OpenSSHFsyncV1,
}Expand description
The kind of SFTP extensions in use.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for SFTPExtensions
impl Clone for SFTPExtensions
Source§fn clone(&self) -> SFTPExtensions
fn clone(&self) -> SFTPExtensions
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 SFTPExtensions
impl Debug for SFTPExtensions
Source§impl Hash for SFTPExtensions
impl Hash for SFTPExtensions
Source§impl Ord for SFTPExtensions
impl Ord for SFTPExtensions
Source§fn cmp(&self, other: &SFTPExtensions) -> Ordering
fn cmp(&self, other: &SFTPExtensions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SFTPExtensions
impl PartialEq for SFTPExtensions
Source§impl PartialOrd for SFTPExtensions
impl PartialOrd for SFTPExtensions
impl Copy for SFTPExtensions
impl Eq for SFTPExtensions
impl StructuralPartialEq for SFTPExtensions
Auto Trait Implementations§
impl Freeze for SFTPExtensions
impl RefUnwindSafe for SFTPExtensions
impl Send for SFTPExtensions
impl Sync for SFTPExtensions
impl Unpin for SFTPExtensions
impl UnwindSafe for SFTPExtensions
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