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