pub struct ImageAttachmentDebug {
pub original_path: String,
pub sent_name: String,
pub original_bytes: usize,
pub sent_bytes: usize,
pub mime: String,
pub compressed: bool,
}Fields§
§original_path: String§sent_name: String§original_bytes: usize§sent_bytes: usize§mime: String§compressed: boolTrait Implementations§
Source§impl Clone for ImageAttachmentDebug
impl Clone for ImageAttachmentDebug
Source§fn clone(&self) -> ImageAttachmentDebug
fn clone(&self) -> ImageAttachmentDebug
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 Debug for ImageAttachmentDebug
impl Debug for ImageAttachmentDebug
Source§impl<'de> Deserialize<'de> for ImageAttachmentDebug
impl<'de> Deserialize<'de> for ImageAttachmentDebug
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
Auto Trait Implementations§
impl Freeze for ImageAttachmentDebug
impl RefUnwindSafe for ImageAttachmentDebug
impl Send for ImageAttachmentDebug
impl Sync for ImageAttachmentDebug
impl Unpin for ImageAttachmentDebug
impl UnsafeUnpin for ImageAttachmentDebug
impl UnwindSafe for ImageAttachmentDebug
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