pub struct MsgraphAttachmentsListResponse {
pub value: Vec<MsgraphAttachment>,
pub next_link: Option<String>,
}Expand description
One page of attachments (value plus the OData paging link).
Fields§
§value: Vec<MsgraphAttachment>The attachments of the page.
next_link: Option<String>The URL of the next page, when one exists.
Trait Implementations§
Source§impl Clone for MsgraphAttachmentsListResponse
impl Clone for MsgraphAttachmentsListResponse
Source§fn clone(&self) -> MsgraphAttachmentsListResponse
fn clone(&self) -> MsgraphAttachmentsListResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for MsgraphAttachmentsListResponse
impl Default for MsgraphAttachmentsListResponse
Source§fn default() -> MsgraphAttachmentsListResponse
fn default() -> MsgraphAttachmentsListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphAttachmentsListResponse
impl<'de> Deserialize<'de> for MsgraphAttachmentsListResponse
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
impl Eq for MsgraphAttachmentsListResponse
impl StructuralPartialEq for MsgraphAttachmentsListResponse
Auto Trait Implementations§
impl Freeze for MsgraphAttachmentsListResponse
impl RefUnwindSafe for MsgraphAttachmentsListResponse
impl Send for MsgraphAttachmentsListResponse
impl Sync for MsgraphAttachmentsListResponse
impl Unpin for MsgraphAttachmentsListResponse
impl UnsafeUnpin for MsgraphAttachmentsListResponse
impl UnwindSafe for MsgraphAttachmentsListResponse
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