pub struct NaiveMIME<'a> {
pub ctype: Option<NaiveType<'a>>,
pub transfer_encoding: Mechanism<'a>,
pub id: Option<MessageID<'a>>,
pub description: Option<Unstructured<'a>>,
pub kv: Vec<Field<'a>>,
pub raw: &'a [u8],
}Fields§
§ctype: Option<NaiveType<'a>>§transfer_encoding: Mechanism<'a>§id: Option<MessageID<'a>>§description: Option<Unstructured<'a>>§kv: Vec<Field<'a>>§raw: &'a [u8]Implementations§
Trait Implementations§
Source§impl<'a> FromIterator<Content<'a>> for NaiveMIME<'a>
impl<'a> FromIterator<Content<'a>> for NaiveMIME<'a>
impl<'a> StructuralPartialEq for NaiveMIME<'a>
Auto Trait Implementations§
impl<'a> Freeze for NaiveMIME<'a>
impl<'a> RefUnwindSafe for NaiveMIME<'a>
impl<'a> Send for NaiveMIME<'a>
impl<'a> Sync for NaiveMIME<'a>
impl<'a> Unpin for NaiveMIME<'a>
impl<'a> UnwindSafe for NaiveMIME<'a>
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