pub struct AttachmentsListResponse {
pub items: Option<Vec<Attachment>>,
pub kind: Option<String>,
}Expand description
A list of Attachments. This is the response from the server to GET requests on the attachments collection.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- attachments list timeline (response)
Fields§
§items: Option<Vec<Attachment>>The list of attachments.
kind: Option<String>The type of resource. This is always mirror#attachmentsList.
Trait Implementations§
Source§impl Clone for AttachmentsListResponse
impl Clone for AttachmentsListResponse
Source§fn clone(&self) -> AttachmentsListResponse
fn clone(&self) -> AttachmentsListResponse
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 AttachmentsListResponse
impl Debug for AttachmentsListResponse
Source§impl Default for AttachmentsListResponse
impl Default for AttachmentsListResponse
Source§fn default() -> AttachmentsListResponse
fn default() -> AttachmentsListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentsListResponse
impl<'de> Deserialize<'de> for AttachmentsListResponse
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 Serialize for AttachmentsListResponse
impl Serialize for AttachmentsListResponse
impl ResponseResult for AttachmentsListResponse
Auto Trait Implementations§
impl Freeze for AttachmentsListResponse
impl RefUnwindSafe for AttachmentsListResponse
impl Send for AttachmentsListResponse
impl Sync for AttachmentsListResponse
impl Unpin for AttachmentsListResponse
impl UnwindSafe for AttachmentsListResponse
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