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