pub struct ParsedAttachment {
pub name: String,
pub data: Vec<u8>,
}Fields§
§name: String§data: Vec<u8>Trait Implementations§
Source§impl Clone for ParsedAttachment
impl Clone for ParsedAttachment
Source§fn clone(&self) -> ParsedAttachment
fn clone(&self) -> ParsedAttachment
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 Debug for ParsedAttachment
impl Debug for ParsedAttachment
Source§impl Default for ParsedAttachment
impl Default for ParsedAttachment
Source§fn default() -> ParsedAttachment
fn default() -> ParsedAttachment
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParsedAttachment
impl PartialEq for ParsedAttachment
Source§fn eq(&self, other: &ParsedAttachment) -> bool
fn eq(&self, other: &ParsedAttachment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParsedAttachment
impl StructuralPartialEq for ParsedAttachment
Auto Trait Implementations§
impl Freeze for ParsedAttachment
impl RefUnwindSafe for ParsedAttachment
impl Send for ParsedAttachment
impl Sync for ParsedAttachment
impl Unpin for ParsedAttachment
impl UnsafeUnpin for ParsedAttachment
impl UnwindSafe for ParsedAttachment
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