pub struct Shared {
pub owner: Option<IdentitySet>,
pub scope: Option<String>,
pub shared_by: Option<IdentitySet>,
pub shared_date_time: Option<String>,
}Expand description
Struct that indicates a DriveItem has been shared with others. The resource includes information about how the item is shared.
Fields§
§owner: Option<IdentitySet>The identity of the owner of the shared item.
scope: Option<String>Indicates the scope of how the item is shared: anonymous, organization, or users.
The identity of the user who shared the item.
The UTC date and time when the item was shared.
Trait Implementations§
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§
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