pub enum MsgraphFlagStatus {
NotFlagged,
Complete,
Flagged,
}Expand description
Status of a follow-up flag.
Variants§
NotFlagged
The message is not flagged.
Complete
The follow-up is completed.
Flagged
The message is flagged for follow-up.
Trait Implementations§
Source§impl Clone for MsgraphFlagStatus
impl Clone for MsgraphFlagStatus
Source§fn clone(&self) -> MsgraphFlagStatus
fn clone(&self) -> MsgraphFlagStatus
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 moreimpl Copy for MsgraphFlagStatus
Source§impl Debug for MsgraphFlagStatus
impl Debug for MsgraphFlagStatus
Source§impl<'de> Deserialize<'de> for MsgraphFlagStatus
impl<'de> Deserialize<'de> for MsgraphFlagStatus
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 MsgraphFlagStatus
Source§impl PartialEq for MsgraphFlagStatus
impl PartialEq for MsgraphFlagStatus
Source§impl Serialize for MsgraphFlagStatus
impl Serialize for MsgraphFlagStatus
impl StructuralPartialEq for MsgraphFlagStatus
Auto Trait Implementations§
impl Freeze for MsgraphFlagStatus
impl RefUnwindSafe for MsgraphFlagStatus
impl Send for MsgraphFlagStatus
impl Sync for MsgraphFlagStatus
impl Unpin for MsgraphFlagStatus
impl UnsafeUnpin for MsgraphFlagStatus
impl UnwindSafe for MsgraphFlagStatus
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