Struct onedrive::IdentitySet
source · pub struct IdentitySet {
pub application: Option<Identity>,
pub device: Option<Identity>,
pub group: Option<Identity>,
pub user: Option<Identity>,
}Expand description
A keyed collection of Identity resources. It is used to represent a set of identities associated with various events for an item, such as created by or last modified by.
Fields§
§application: Option<Identity>Optional. The application associated with this action.
device: Option<Identity>Optional. The device associated with this action.
group: Option<Identity>Optional. The group associated with this action.
user: Option<Identity>Optional. The user associated with this action.
Trait Implementations§
source§impl Debug for IdentitySet
impl Debug for IdentitySet
source§impl<'de> Deserialize<'de> for IdentitySet
impl<'de> Deserialize<'de> for IdentitySet
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
Auto Trait Implementations§
impl RefUnwindSafe for IdentitySet
impl Send for IdentitySet
impl Sync for IdentitySet
impl Unpin for IdentitySet
impl UnwindSafe for IdentitySet
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