[][src]Struct google_classroom1::Course

pub struct Course {
    pub update_time: Option<String>,
    pub description: Option<String>,
    pub enrollment_code: Option<String>,
    pub guardians_enabled: Option<bool>,
    pub course_group_email: Option<String>,
    pub course_material_sets: Option<Vec<CourseMaterialSet>>,
    pub calendar_id: Option<String>,
    pub course_state: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub room: Option<String>,
    pub alternate_link: Option<String>,
    pub section: Option<String>,
    pub creation_time: Option<String>,
    pub teacher_group_email: Option<String>,
    pub teacher_folder: Option<DriveFolder>,
    pub owner_id: Option<String>,
    pub description_heading: Option<String>,
}

A Course in Classroom.

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

update_time: Option<String>

Time of the most recent update to this course. Specifying this field in a course update mask results in an error.

Read-only.

description: Option<String>

Optional description. For example, "We'll be learning about the structure of living creatures from a combination of textbooks, guest lectures, and lab work. Expect to be excited!" If set, this field must be a valid UTF-8 string and no longer than 30,000 characters.

enrollment_code: Option<String>

Enrollment code to use when joining this course. Specifying this field in a course update mask results in an error.

Read-only.

guardians_enabled: Option<bool>

Whether or not guardian notifications are enabled for this course.

Read-only.

course_group_email: Option<String>

The email address of a Google group containing all members of the course. This group does not accept email and can only be used for permissions.

Read-only.

course_material_sets: Option<Vec<CourseMaterialSet>>

Sets of materials that appear on the "about" page of this course.

Read-only.

calendar_id: Option<String>

The Calendar ID for a calendar that all course members can see, to which Classroom adds events for course work and announcements in the course.

Read-only.

course_state: Option<String>

State of the course. If unspecified, the default state is PROVISIONED.

id: Option<String>

Identifier for this course assigned by Classroom.

When creating a course, you may optionally set this identifier to an alias string in the request to create a corresponding alias. The id is still assigned by Classroom and cannot be updated after the course is created.

Specifying this field in a course update mask results in an error.

name: Option<String>

Name of the course. For example, "10th Grade Biology". The name is required. It must be between 1 and 750 characters and a valid UTF-8 string.

room: Option<String>

Optional room location. For example, "301". If set, this field must be a valid UTF-8 string and no longer than 650 characters.

alternate_link: Option<String>

Absolute link to this course in the Classroom web UI.

Read-only.

section: Option<String>

Section of the course. For example, "Period 2". If set, this field must be a valid UTF-8 string and no longer than 2800 characters.

creation_time: Option<String>

Creation time of the course. Specifying this field in a course update mask results in an error.

Read-only.

teacher_group_email: Option<String>

The email address of a Google group containing all teachers of the course. This group does not accept email and can only be used for permissions.

Read-only.

teacher_folder: Option<DriveFolder>

Information about a Drive Folder that is shared with all teachers of the course.

This field will only be set for teachers of the course and domain administrators.

Read-only.

owner_id: Option<String>

The identifier of the owner of a course.

When specified as a parameter of a create course request, this field is required. The 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

This must be set in a create request. Admins can also specify this field in a patch course request to transfer ownership. In other contexts, it is read-only.

description_heading: Option<String>

Optional heading for the description. For example, "Welcome to 10th Grade Biology." If set, this field must be a valid UTF-8 string and no longer than 3600 characters.

Trait Implementations

impl Resource for Course[src]

impl ResponseResult for Course[src]

impl RequestValue for Course[src]

impl Default for Course[src]

impl Clone for Course[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Course[src]

impl Serialize for Course[src]

impl<'de> Deserialize<'de> for Course[src]

Auto Trait Implementations

impl Send for Course

impl Unpin for Course

impl Sync for Course

impl UnwindSafe for Course

impl RefUnwindSafe for Course

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]