pub enum TransferProtocolType {
Cifs,
Ftp,
Sftp,
Http,
Https,
Nsf,
Scp,
Tftp,
Oem,
Nfs,
}Variants§
Cifs
Common Internet File System (CIFS).
Ftp
File Transfer Protocol (FTP).
Sftp
SSH File Transfer Protocol (SFTP).
Http
Hypertext Transfer Protocol (HTTP).
Https
Hypertext Transfer Protocol Secure (HTTPS).
Nsf
Network File System (NFS).
Scp
Secure Copy Protocol (SCP).
Tftp
Trivial File Transfer Protocol (TFTP).
Oem
A manufacturer-defined protocol.
Nfs
Network File System (NFS).
Trait Implementations§
Source§impl Clone for TransferProtocolType
impl Clone for TransferProtocolType
Source§fn clone(&self) -> TransferProtocolType
fn clone(&self) -> TransferProtocolType
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 TransferProtocolType
impl Debug for TransferProtocolType
Source§impl<'de> Deserialize<'de> for TransferProtocolType
impl<'de> Deserialize<'de> for TransferProtocolType
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 PartialEq for TransferProtocolType
impl PartialEq for TransferProtocolType
Source§impl Serialize for TransferProtocolType
impl Serialize for TransferProtocolType
Source§impl ToSnakeCase for TransferProtocolType
impl ToSnakeCase for TransferProtocolType
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for TransferProtocolType
impl Eq for TransferProtocolType
impl StructuralPartialEq for TransferProtocolType
Auto Trait Implementations§
impl Freeze for TransferProtocolType
impl RefUnwindSafe for TransferProtocolType
impl Send for TransferProtocolType
impl Sync for TransferProtocolType
impl Unpin for TransferProtocolType
impl UnsafeUnpin for TransferProtocolType
impl UnwindSafe for TransferProtocolType
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