pub struct MsgraphSingleValueExtendedProperty {
pub id: String,
pub value: String,
}Expand description
A single-value extended MAPI property: the full property id (the
String {guid} Name <name> form) and its value.
https://learn.microsoft.com/en-us/graph/api/resources/singlevaluelegacyextendedproperty
Fields§
§id: StringThe full property identifier.
value: StringThe value of the property.
Trait Implementations§
Source§impl Clone for MsgraphSingleValueExtendedProperty
impl Clone for MsgraphSingleValueExtendedProperty
Source§fn clone(&self) -> MsgraphSingleValueExtendedProperty
fn clone(&self) -> MsgraphSingleValueExtendedProperty
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 Default for MsgraphSingleValueExtendedProperty
impl Default for MsgraphSingleValueExtendedProperty
Source§fn default() -> MsgraphSingleValueExtendedProperty
fn default() -> MsgraphSingleValueExtendedProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MsgraphSingleValueExtendedProperty
impl<'de> Deserialize<'de> for MsgraphSingleValueExtendedProperty
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 MsgraphSingleValueExtendedProperty
impl StructuralPartialEq for MsgraphSingleValueExtendedProperty
Auto Trait Implementations§
impl Freeze for MsgraphSingleValueExtendedProperty
impl RefUnwindSafe for MsgraphSingleValueExtendedProperty
impl Send for MsgraphSingleValueExtendedProperty
impl Sync for MsgraphSingleValueExtendedProperty
impl Unpin for MsgraphSingleValueExtendedProperty
impl UnsafeUnpin for MsgraphSingleValueExtendedProperty
impl UnwindSafe for MsgraphSingleValueExtendedProperty
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