Struct google_classroom1::Student[][src]

pub struct Student {
    pub profile: Option<UserProfile>,
    pub course_id: Option<String>,
    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

Global user information for the student.

Read-only.

Identifier of the course.

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]

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

impl Clone for Student
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Student
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Student
[src]

impl ResponseResult for Student
[src]

Auto Trait Implementations

impl Send for Student

impl Sync for Student