pub struct MessagePart {
pub cid: String,
pub typ: String,
pub filename: String,
pub size: usize,
pub charset: String,
pub body: Vec<u8>,
pub is_attachment: bool,
}Fields§
§cid: String§typ: String§filename: String§size: usize§charset: String§body: Vec<u8>§is_attachment: boolTrait Implementations§
Source§impl Debug for MessagePart
impl Debug for MessagePart
Source§impl PartialEq for MessagePart
impl PartialEq for MessagePart
impl StructuralPartialEq for MessagePart
Auto Trait Implementations§
impl Freeze for MessagePart
impl RefUnwindSafe for MessagePart
impl Send for MessagePart
impl Sync for MessagePart
impl Unpin for MessagePart
impl UnwindSafe for MessagePart
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