pub enum SpecificFields<'a> {
Basic {
type: IString<'a>,
subtype: IString<'a>,
},
Message {
envelope: Box<Envelope<'a>>,
body_structure: Box<BodyStructure<'a>>,
number_of_lines: u32,
},
Text {
subtype: IString<'a>,
number_of_lines: u32,
},
}
Expand description
Specific fields of a non-multipart body part.
Variants§
Basic
§Example (not in RFC)
Single application/{voodoo, unknown, whatever, meh} is represented as “basic”
(
"application" "voodoo" NIL NIL NIL "7bit" 20
^^^ ^^^ ^^^ ^^^^^^ ^^
| | | | | size
| | | | content transfer encoding
| | | description
| | id
| parameter list
NIL NIL NIL NIL
^^^ ^^^ ^^^ ^^^
| | | | location
| | | language
| | disposition
| md5
)
Fields
Message
§Example (not in RFC)
Single message/rfc822 is represented as “message”
(
"message" "rfc822" NIL NIL NIL "7bit" 123
^^^ ^^^ ^^^ ^^^^^^ ^^^
| | | | | size
| | | | content transfer encoding
| | | description
| | id
| parameter list
# envelope
(
NIL "message.inner.subject.ljcwooqy" ((NIL NIL "extern" "company.com")) ((NIL NIL "extern" "company.com")) ((NIL NIL "extern" "company.com")) ((NIL NIL "admin" "seurity.com")) NIL NIL NIL NIL
)
# body structure
(
"text" "plain" ("charset" "us-ascii") NIL NIL "7bit" 31
2
NIL NIL NIL NIL
)
6
^
| number of lines
NIL NIL NIL NIL
^^^ ^^^ ^^^ ^^^
| | | | location
| | | language
| | disposition
| md5
)
A body type of type MESSAGE and subtype RFC822 contains, immediately after the basic fields,
Fields
§
body_structure: Box<BodyStructure<'a>>
body structure,
Text
§Example (not in RFC)
Single text/plain is represented as “text”
(
"text" "plain" ("charset" "us-ascii") NIL NIL "7bit" 25
^^^^^^^^^^^^^^^^^^^^^^ ^^^ ^^^ ^^^^^^ ^^
| | | | | size
| | | | content transfer encoding
| | | description
| | id
| parameter list
1
^
| number of lines
NIL NIL NIL NIL
^^^ ^^^ ^^^ ^^^
| | | | location
| | | language
| | disposition
| md5
)
Trait Implementations§
Source§impl<'a, 'arbitrary: 'a> Arbitrary<'arbitrary> for SpecificFields<'a>
impl<'a, 'arbitrary: 'a> Arbitrary<'arbitrary> for SpecificFields<'a>
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Get a size hint for how many bytes out of an
Unstructured
this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Get a size hint for how many bytes out of an
Unstructured
this type
needs to construct itself. Read moreSource§impl<'a> Clone for SpecificFields<'a>
impl<'a> Clone for SpecificFields<'a>
Source§fn clone(&self) -> SpecificFields<'a>
fn clone(&self) -> SpecificFields<'a>
Returns a duplicate of the value. Read more
1.0.0 · 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 SpecificFields<'a>
impl<'a> Debug for SpecificFields<'a>
Source§impl<'de, 'a> Deserialize<'de> for SpecificFields<'a>
impl<'de, 'a> Deserialize<'de> for SpecificFields<'a>
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<'a> Hash for SpecificFields<'a>
impl<'a> Hash for SpecificFields<'a>
Source§impl<'a> IntoBoundedStatic for SpecificFields<'a>
impl<'a> IntoBoundedStatic for SpecificFields<'a>
Source§type Static = SpecificFields<'static>
type Static = SpecificFields<'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 SpecificFields<'a>
impl<'a> PartialEq for SpecificFields<'a>
Source§impl<'a> Serialize for SpecificFields<'a>
impl<'a> Serialize for SpecificFields<'a>
Source§impl<'a> ToBoundedStatic for SpecificFields<'a>
impl<'a> ToBoundedStatic for SpecificFields<'a>
impl<'a> Eq for SpecificFields<'a>
impl<'a> StructuralPartialEq for SpecificFields<'a>
Auto Trait Implementations§
impl<'a> Freeze for SpecificFields<'a>
impl<'a> RefUnwindSafe for SpecificFields<'a>
impl<'a> Send for SpecificFields<'a>
impl<'a> Sync for SpecificFields<'a>
impl<'a> Unpin for SpecificFields<'a>
impl<'a> UnwindSafe for SpecificFields<'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