Struct google_classroom1::Name [] [src]

pub struct Name {
    pub full_name: Option<String>,
    pub given_name: Option<String>,
    pub family_name: Option<String>,
}

Details of the user's name.

This type is not used in any activity, and only used as part of another schema.

Fields

The user's full name formed by concatenating the first and last name values.

Read-only.

The user's first name.

Read-only.

The user's last name.

Read-only.

Trait Implementations

impl Default for Name
[src]

[src]

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

impl Clone for Name
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Name
[src]

[src]

Formats the value using the given formatter.

impl Part for Name
[src]