pub struct AttachmentsResult {
pub results: Vec<Attachment>,
pub start: u32,
pub limit: u32,
pub size: u32,
}Expand description
Attachments result.
Fields§
§results: Vec<Attachment>§start: u32§limit: u32§size: u32Trait Implementations§
Source§impl Clone for AttachmentsResult
impl Clone for AttachmentsResult
Source§fn clone(&self) -> AttachmentsResult
fn clone(&self) -> AttachmentsResult
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 AttachmentsResult
impl Debug for AttachmentsResult
Source§impl<'de> Deserialize<'de> for AttachmentsResult
impl<'de> Deserialize<'de> for AttachmentsResult
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 AttachmentsResult
impl RefUnwindSafe for AttachmentsResult
impl Send for AttachmentsResult
impl Sync for AttachmentsResult
impl Unpin for AttachmentsResult
impl UnwindSafe for AttachmentsResult
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