pub struct SingleBody {
    pub content_type: ContentTypeHeaderField,
    pub content_id: ContentIDHeaderField,
    pub content_description: ContentDescriptionHeaderField,
    pub content_transfer_encoding: ContentTransferEncodingHeaderField,
    pub content_size: ContentSize,
    pub content_md5: ContentMD5HeaderField,
    pub content_disposition: ContentDispositionHeaderField,
    pub content_language: ContentLanguageHeaderField,
    pub content_location: ContentLocationHeaderField,
    pub data: Vec<u8>,
    pub raw_header: Vec<u8>,
}Fields§
§content_type: ContentTypeHeaderField§content_id: ContentIDHeaderField§content_description: ContentDescriptionHeaderField§content_transfer_encoding: ContentTransferEncodingHeaderField§content_size: ContentSize§content_md5: ContentMD5HeaderField§content_disposition: ContentDispositionHeaderField§content_language: ContentLanguageHeaderField§content_location: ContentLocationHeaderField§data: Vec<u8>§raw_header: Vec<u8>Implementations§
Trait Implementations§
Source§impl Debug for SingleBody
 
impl Debug for SingleBody
Source§impl PartialEq for SingleBody
 
impl PartialEq for SingleBody
impl StructuralPartialEq for SingleBody
Auto Trait Implementations§
impl Freeze for SingleBody
impl RefUnwindSafe for SingleBody
impl Send for SingleBody
impl Sync for SingleBody
impl Unpin for SingleBody
impl UnwindSafe for SingleBody
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