pub struct MsgraphContactFolder {
pub id: String,
pub display_name: String,
pub parent_folder_id: Option<String>,
}Expand description
A contact folder in a user’s mailbox. Doubles as the create/update
body, where only display_name is serialized.
Fields§
§id: StringThe unique identifier of the folder.
display_name: StringThe display name of the folder.
parent_folder_id: Option<String>The identifier of the parent folder.
Trait Implementations§
Source§impl Clone for MsgraphContactFolder
impl Clone for MsgraphContactFolder
Source§fn clone(&self) -> MsgraphContactFolder
fn clone(&self) -> MsgraphContactFolder
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 MsgraphContactFolder
impl Debug for MsgraphContactFolder
Source§impl Default for MsgraphContactFolder
impl Default for MsgraphContactFolder
Source§fn default() -> MsgraphContactFolder
fn default() -> MsgraphContactFolder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphContactFolder
impl<'de> Deserialize<'de> for MsgraphContactFolder
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 MsgraphContactFolder
Source§impl PartialEq for MsgraphContactFolder
impl PartialEq for MsgraphContactFolder
Source§impl Serialize for MsgraphContactFolder
impl Serialize for MsgraphContactFolder
impl StructuralPartialEq for MsgraphContactFolder
Auto Trait Implementations§
impl Freeze for MsgraphContactFolder
impl RefUnwindSafe for MsgraphContactFolder
impl Send for MsgraphContactFolder
impl Sync for MsgraphContactFolder
impl Unpin for MsgraphContactFolder
impl UnsafeUnpin for MsgraphContactFolder
impl UnwindSafe for MsgraphContactFolder
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