Struct google_drive::User [−][src]
pub struct User {
pub me: Option<bool>,
pub kind: Option<String>,
pub display_name: Option<String>,
pub photo_link: Option<String>,
pub email_address: Option<String>,
pub permission_id: Option<String>,
}Expand description
Information about a Drive user.
This type is not used in any activity, and only used as part of another schema.
Fields
me: Option<bool>Whether this user is the requesting user.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “drive#user”.
display_name: Option<String>A plain text displayable name for this user.
photo_link: Option<String>A link to the user’s profile photo, if available.
email_address: Option<String>The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.
permission_id: Option<String>The user’s ID as visible in Permission resources.
Trait Implementations
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 Userimpl UnwindSafe for UserBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more