pub enum EncodingFlag {
QuotedPrintable,
Base64,
Shortest,
}
Expand description
Flags for types of header encodings
Variants§
QuotedPrintable
Quoted printable encoding.
Base64
Base64 encoding.
Shortest
The shorter of QuotedPrintable
or Base64
, but only for headers.
Auto Trait Implementations§
impl Freeze for EncodingFlag
impl RefUnwindSafe for EncodingFlag
impl Send for EncodingFlag
impl Sync for EncodingFlag
impl Unpin for EncodingFlag
impl UnwindSafe for EncodingFlag
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