Struct google_classroom1::Student [] [src]

pub struct Student {
    pub course_id: Option<String>,
    pub profile: Option<UserProfile>,
    pub student_work_folder: Option<DriveFolder>,
    pub user_id: Option<String>,
}

Student in 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 student.

Read-only.

Information about a Drive Folder for this student's work in this course. Only visible to the student and domain administrators.

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 Default for Student
[src]

[src]

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

impl Clone for Student
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Student
[src]

[src]

Formats the value using the given formatter.

impl RequestValue for Student
[src]

impl ResponseResult for Student
[src]