Struct google_classroom1::UserProfile[][src]

pub struct UserProfile {
    pub email_address: Option<String>,
    pub name: Option<Name>,
    pub photo_url: Option<String>,
    pub verified_teacher: Option<bool>,
    pub id: Option<String>,
    pub permissions: Option<Vec<GlobalPermission>>,
}

Global information for a user.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Email address of the user.

Read-only.

Name of the user.

Read-only.

URL of user's profile photo.

Read-only.

Represents whether a G Suite for Education user's domain administrator has explicitly verified them as being a teacher. If the user is not a member of a G Suite for Education domain, than this field will always be false.

Read-only

Identifier of the user.

Read-only.

Global permissions of the user.

Read-only.

Trait Implementations

impl Default for UserProfile
[src]

Returns the "default value" for a type. Read more

impl Clone for UserProfile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UserProfile
[src]

Formats the value using the given formatter. Read more

impl Resource for UserProfile
[src]

impl ResponseResult for UserProfile
[src]

Auto Trait Implementations

impl Send for UserProfile

impl Sync for UserProfile