pub enum TransferEncodingHint {
UseBase64,
UseQuotedPrintable,
NoHint,
// some variants omitted
}
Expand description
Hint to change how data should be transfer encoded.
Variants§
UseBase64
Use Base64 encoding.
UseQuotedPrintable
Use Quoted-Printable encoding.
NoHint
No hint for transfer encoding.
Trait Implementations§
Source§impl Debug for TransferEncodingHint
impl Debug for TransferEncodingHint
Source§impl Default for TransferEncodingHint
impl Default for TransferEncodingHint
Source§impl<'de> Deserialize<'de> for TransferEncodingHint
impl<'de> Deserialize<'de> for TransferEncodingHint
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 TransferEncodingHint
impl PartialEq for TransferEncodingHint
Source§impl Serialize for TransferEncodingHint
impl Serialize for TransferEncodingHint
impl StructuralPartialEq for TransferEncodingHint
Auto Trait Implementations§
impl Freeze for TransferEncodingHint
impl RefUnwindSafe for TransferEncodingHint
impl Send for TransferEncodingHint
impl Sync for TransferEncodingHint
impl Unpin for TransferEncodingHint
impl UnwindSafe for TransferEncodingHint
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