Struct google_classroom1::Teacher [] [src]

pub struct Teacher {
    pub course_id: Option<String>,
    pub profile: Option<UserProfile>,
    pub user_id: Option<String>,
}

Teacher of a course.

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

Identifier of the course. Read-only.

Global user information for the teacher. Read-only.

Identifier of the user. When specified as a parameter of a request, this identifier can be one of the following: * the numeric identifier for the user * the email address of the user * the string literal "me", indicating the requesting user

Trait Implementations

impl Debug for Teacher
[src]

Formats the value using the given formatter.

impl Clone for Teacher
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Teacher
[src]

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

impl RequestValue for Teacher
[src]

impl ResponseResult for Teacher
[src]