pub struct MsgraphMessagesListResponse {
pub value: Vec<MsgraphMessage>,
pub next_link: Option<String>,
}Expand description
One page of messages (value plus the OData paging link).
Fields§
§value: Vec<MsgraphMessage>The messages of the page.
next_link: Option<String>The URL of the next page, when one exists.
Trait Implementations§
Source§impl Clone for MsgraphMessagesListResponse
impl Clone for MsgraphMessagesListResponse
Source§fn clone(&self) -> MsgraphMessagesListResponse
fn clone(&self) -> MsgraphMessagesListResponse
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 Debug for MsgraphMessagesListResponse
impl Debug for MsgraphMessagesListResponse
Source§impl Default for MsgraphMessagesListResponse
impl Default for MsgraphMessagesListResponse
Source§fn default() -> MsgraphMessagesListResponse
fn default() -> MsgraphMessagesListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphMessagesListResponse
impl<'de> Deserialize<'de> for MsgraphMessagesListResponse
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 MsgraphMessagesListResponse
impl StructuralPartialEq for MsgraphMessagesListResponse
Auto Trait Implementations§
impl Freeze for MsgraphMessagesListResponse
impl RefUnwindSafe for MsgraphMessagesListResponse
impl Send for MsgraphMessagesListResponse
impl Sync for MsgraphMessagesListResponse
impl Unpin for MsgraphMessagesListResponse
impl UnsafeUnpin for MsgraphMessagesListResponse
impl UnwindSafe for MsgraphMessagesListResponse
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