[][src]Struct graph_rs_types::entitytypes::EducationUser

pub struct EducationUser {
    pub primary_role: EducationUserRole,
    pub middle_name: String,
    pub external_source: EducationExternalSource,
    pub residence_address: PhysicalAddress,
    pub mailing_address: PhysicalAddress,
    pub student: EducationStudent,
    pub teacher: EducationTeacher,
    pub created_by: IdentitySet,
    pub account_enabled: bool,
    pub assigned_licenses: Vec<AssignedLicense>,
    pub assigned_plans: Vec<AssignedPlan>,
    pub business_phones: Vec<String>,
    pub department: String,
    pub display_name: String,
    pub given_name: String,
    pub mail: String,
    pub mail_nickname: String,
    pub mobile_phone: String,
    pub password_policies: String,
    pub password_profile: PasswordProfile,
    pub office_location: String,
    pub preferred_language: String,
    pub provisioned_plans: Vec<ProvisionedPlan>,
    pub refresh_tokens_valid_from_date_time: String,
    pub show_in_address_list: bool,
    pub surname: String,
    pub usage_location: String,
    pub user_principal_name: String,
    pub user_type: String,
    pub schools: Vec<EducationSchool>,
    pub classes: Vec<EducationClass>,
    pub user: User,
}

Fields

primary_role: EducationUserRolemiddle_name: Stringexternal_source: EducationExternalSourceresidence_address: PhysicalAddressmailing_address: PhysicalAddressstudent: EducationStudentteacher: EducationTeachercreated_by: IdentitySetaccount_enabled: boolassigned_licenses: Vec<AssignedLicense>assigned_plans: Vec<AssignedPlan>business_phones: Vec<String>department: Stringdisplay_name: Stringgiven_name: Stringmail: Stringmail_nickname: Stringmobile_phone: Stringpassword_policies: Stringpassword_profile: PasswordProfileoffice_location: Stringpreferred_language: Stringprovisioned_plans: Vec<ProvisionedPlan>refresh_tokens_valid_from_date_time: Stringshow_in_address_list: boolsurname: Stringusage_location: Stringuser_principal_name: Stringuser_type: Stringschools: Vec<EducationSchool>classes: Vec<EducationClass>user: User

Trait Implementations

impl Eq for EducationUser[src]

impl Clone for EducationUser[src]

impl PartialEq<EducationUser> for EducationUser[src]

impl Debug for EducationUser[src]

impl Serialize for EducationUser[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]