pub struct MIME<'a, T> {
pub ctype: T,
pub fields: CommonMIME<'a>,
}Fields§
§ctype: T§fields: CommonMIME<'a>Trait Implementations§
Source§impl<'a, T> ContainsUtf8 for MIME<'a, T>where
T: ContainsUtf8,
impl<'a, T> ContainsUtf8 for MIME<'a, T>where
T: ContainsUtf8,
fn contains_utf8(&self) -> bool
Source§impl<'a, T: IntoBoundedStatic> IntoBoundedStatic for MIME<'a, T>
impl<'a, T: IntoBoundedStatic> IntoBoundedStatic for MIME<'a, T>
Source§type Static = MIME<'static, <T as IntoBoundedStatic>::Static>
type Static = MIME<'static, <T as IntoBoundedStatic>::Static>
The target type is bounded by the
'static lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T into an owned T such that T: 'static.Source§impl<'a, T: PartialEq> PartialEq for MIME<'a, T>
impl<'a, T: PartialEq> PartialEq for MIME<'a, T>
impl<'a, T: PartialEq> StructuralPartialEq for MIME<'a, T>
Source§impl<'a, T: ToBoundedStatic> ToBoundedStatic for MIME<'a, T>
impl<'a, T: ToBoundedStatic> ToBoundedStatic for MIME<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for MIME<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for MIME<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for MIME<'a, T>where
T: Send,
impl<'a, T> Sync for MIME<'a, T>where
T: Sync,
impl<'a, T> Unpin for MIME<'a, T>where
T: Unpin,
impl<'a, T> UnsafeUnpin for MIME<'a, T>where
T: UnsafeUnpin,
impl<'a, T> UnwindSafe for MIME<'a, T>where
T: UnwindSafe,
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