pub struct Rfc2045Info {
pub encoding: ContentTransferEncoding,
pub charset: Result<Charset>,
pub content_type: Option<MimeParameters>,
pub is_text: bool,
pub is_multipart: bool,
pub attachment_options: Option<AttachmentOptions>,
pub invalid_mime_headers: bool,
}
Fields§
§encoding: ContentTransferEncoding
§charset: Result<Charset>
§content_type: Option<MimeParameters>
§is_text: bool
§is_multipart: bool
§attachment_options: Option<AttachmentOptions>
§invalid_mime_headers: bool
Trait Implementations§
Source§impl Debug for Rfc2045Info
impl Debug for Rfc2045Info
Source§impl PartialEq for Rfc2045Info
impl PartialEq for Rfc2045Info
impl StructuralPartialEq for Rfc2045Info
Auto Trait Implementations§
impl Freeze for Rfc2045Info
impl RefUnwindSafe for Rfc2045Info
impl Send for Rfc2045Info
impl Sync for Rfc2045Info
impl Unpin for Rfc2045Info
impl UnwindSafe for Rfc2045Info
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