pub struct MsgraphMessagesDeltaResponse {
pub value: Vec<MsgraphMessageDelta>,
pub next_link: Option<String>,
pub delta_link: Option<String>,
}Expand description
One page of a messages delta round.
More pages follow through next_link; the round ends when
delta_link arrives (the token of the next round).
Fields§
§value: Vec<MsgraphMessageDelta>The changed messages of the page.
next_link: Option<String>The URL of the next page of the round, when one exists.
delta_link: Option<String>The URL closing the round, carrying the next round’s token.
Trait Implementations§
Source§impl Clone for MsgraphMessagesDeltaResponse
impl Clone for MsgraphMessagesDeltaResponse
Source§fn clone(&self) -> MsgraphMessagesDeltaResponse
fn clone(&self) -> MsgraphMessagesDeltaResponse
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 MsgraphMessagesDeltaResponse
impl Debug for MsgraphMessagesDeltaResponse
Source§impl Default for MsgraphMessagesDeltaResponse
impl Default for MsgraphMessagesDeltaResponse
Source§fn default() -> MsgraphMessagesDeltaResponse
fn default() -> MsgraphMessagesDeltaResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphMessagesDeltaResponse
impl<'de> Deserialize<'de> for MsgraphMessagesDeltaResponse
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 MsgraphMessagesDeltaResponse
impl StructuralPartialEq for MsgraphMessagesDeltaResponse
Auto Trait Implementations§
impl Freeze for MsgraphMessagesDeltaResponse
impl RefUnwindSafe for MsgraphMessagesDeltaResponse
impl Send for MsgraphMessagesDeltaResponse
impl Sync for MsgraphMessagesDeltaResponse
impl Unpin for MsgraphMessagesDeltaResponse
impl UnsafeUnpin for MsgraphMessagesDeltaResponse
impl UnwindSafe for MsgraphMessagesDeltaResponse
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