pub enum EntityEntry<'a> {
MIME {
e: Entry,
raw_body: RawInput<'a>,
},
Unstructured(Unstructured<'a>),
}Expand description
Entry for an entity field.
Variants§
Trait Implementations§
Source§impl<'a> Clone for EntityEntry<'a>
impl<'a> Clone for EntityEntry<'a>
Source§fn clone(&self) -> EntityEntry<'a>
fn clone(&self) -> EntityEntry<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for EntityEntry<'a>
impl<'a> Debug for EntityEntry<'a>
Source§impl<'a> IntoBoundedStatic for EntityEntry<'a>
impl<'a> IntoBoundedStatic for EntityEntry<'a>
Source§type Static = EntityEntry<'static>
type Static = EntityEntry<'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> PartialEq for EntityEntry<'a>
impl<'a> PartialEq for EntityEntry<'a>
Source§fn eq(&self, other: &EntityEntry<'a>) -> bool
fn eq(&self, other: &EntityEntry<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for EntityEntry<'a>
Source§impl<'a> ToBoundedStatic for EntityEntry<'a>
impl<'a> ToBoundedStatic for EntityEntry<'a>
Auto Trait Implementations§
impl<'a> Freeze for EntityEntry<'a>
impl<'a> RefUnwindSafe for EntityEntry<'a>
impl<'a> Send for EntityEntry<'a>
impl<'a> Sync for EntityEntry<'a>
impl<'a> Unpin for EntityEntry<'a>
impl<'a> UnsafeUnpin for EntityEntry<'a>
impl<'a> UnwindSafe for EntityEntry<'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