pub struct AttachmentArchive {
pub more_available: Option<bool>,
pub total_number_of_entries_available: Option<i32>,
pub total_entry_count: Option<i32>,
pub entries: Option<Vec<AttachmentArchiveEntry>>,
}
Fields§
§more_available: Option<bool>
§total_number_of_entries_available: Option<i32>
§total_entry_count: Option<i32>
§entries: Option<Vec<AttachmentArchiveEntry>>
Implementations§
Source§impl AttachmentArchive
impl AttachmentArchive
pub fn new() -> AttachmentArchive
Trait Implementations§
Source§impl Clone for AttachmentArchive
impl Clone for AttachmentArchive
Source§fn clone(&self) -> AttachmentArchive
fn clone(&self) -> AttachmentArchive
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 AttachmentArchive
impl Debug for AttachmentArchive
Source§impl Default for AttachmentArchive
impl Default for AttachmentArchive
Source§fn default() -> AttachmentArchive
fn default() -> AttachmentArchive
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentArchive
impl<'de> Deserialize<'de> for AttachmentArchive
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 AttachmentArchive
impl PartialEq for AttachmentArchive
Source§impl Serialize for AttachmentArchive
impl Serialize for AttachmentArchive
impl StructuralPartialEq for AttachmentArchive
Auto Trait Implementations§
impl Freeze for AttachmentArchive
impl RefUnwindSafe for AttachmentArchive
impl Send for AttachmentArchive
impl Sync for AttachmentArchive
impl Unpin for AttachmentArchive
impl UnwindSafe for AttachmentArchive
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