pub struct AttachmentArchiveImpl {
    pub entries: Option<Vec<AttachmentArchiveEntry>>,
    pub total_entry_count: Option<i32>,
}Fields§
§entries: Option<Vec<AttachmentArchiveEntry>>The list of the items included in the archive.
total_entry_count: Option<i32>The number of items in the archive.
Implementations§
Source§impl AttachmentArchiveImpl
 
impl AttachmentArchiveImpl
pub fn new() -> AttachmentArchiveImpl
Trait Implementations§
Source§impl Clone for AttachmentArchiveImpl
 
impl Clone for AttachmentArchiveImpl
Source§fn clone(&self) -> AttachmentArchiveImpl
 
fn clone(&self) -> AttachmentArchiveImpl
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 AttachmentArchiveImpl
 
impl Debug for AttachmentArchiveImpl
Source§impl<'de> Deserialize<'de> for AttachmentArchiveImpl
 
impl<'de> Deserialize<'de> for AttachmentArchiveImpl
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
Source§impl PartialEq for AttachmentArchiveImpl
 
impl PartialEq for AttachmentArchiveImpl
Source§impl Serialize for AttachmentArchiveImpl
 
impl Serialize for AttachmentArchiveImpl
impl StructuralPartialEq for AttachmentArchiveImpl
Auto Trait Implementations§
impl Freeze for AttachmentArchiveImpl
impl RefUnwindSafe for AttachmentArchiveImpl
impl Send for AttachmentArchiveImpl
impl Sync for AttachmentArchiveImpl
impl Unpin for AttachmentArchiveImpl
impl UnwindSafe for AttachmentArchiveImpl
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