pub struct MsgraphContactDelta {
pub contact: MsgraphContact,
pub removed: Option<MsgraphRemoved>,
}Expand description
One contact row of a delta page: the contact (only its id when the
row is a removal), plus the @removed marker.
Fields§
§contact: MsgraphContactThe changed contact.
removed: Option<MsgraphRemoved>The removal marker, present when the row is a removal.
Trait Implementations§
Source§impl Clone for MsgraphContactDelta
impl Clone for MsgraphContactDelta
Source§fn clone(&self) -> MsgraphContactDelta
fn clone(&self) -> MsgraphContactDelta
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 MsgraphContactDelta
impl Debug for MsgraphContactDelta
Source§impl Default for MsgraphContactDelta
impl Default for MsgraphContactDelta
Source§fn default() -> MsgraphContactDelta
fn default() -> MsgraphContactDelta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphContactDelta
impl<'de> Deserialize<'de> for MsgraphContactDelta
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 MsgraphContactDelta
Source§impl PartialEq for MsgraphContactDelta
impl PartialEq for MsgraphContactDelta
Source§impl Serialize for MsgraphContactDelta
impl Serialize for MsgraphContactDelta
impl StructuralPartialEq for MsgraphContactDelta
Auto Trait Implementations§
impl Freeze for MsgraphContactDelta
impl RefUnwindSafe for MsgraphContactDelta
impl Send for MsgraphContactDelta
impl Sync for MsgraphContactDelta
impl Unpin for MsgraphContactDelta
impl UnsafeUnpin for MsgraphContactDelta
impl UnwindSafe for MsgraphContactDelta
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