[][src]Struct graph_rs_types::entitytypes::EducationClass

pub struct EducationClass {
    pub display_name: String,
    pub mail_nickname: String,
    pub description: String,
    pub created_by: IdentitySet,
    pub class_code: String,
    pub external_name: String,
    pub external_id: String,
    pub external_source: EducationExternalSource,
    pub term: EducationTerm,
    pub schools: Vec<EducationSchool>,
    pub members: Vec<EducationUser>,
    pub teachers: Vec<EducationUser>,
    pub group: Group,
}

Fields

display_name: Stringmail_nickname: Stringdescription: Stringcreated_by: IdentitySetclass_code: Stringexternal_name: Stringexternal_id: Stringexternal_source: EducationExternalSourceterm: EducationTermschools: Vec<EducationSchool>members: Vec<EducationUser>teachers: Vec<EducationUser>group: Group

Trait Implementations

impl Eq for EducationClass[src]

impl Clone for EducationClass[src]

impl PartialEq<EducationClass> for EducationClass[src]

impl Debug for EducationClass[src]

impl Serialize for EducationClass[src]

impl<'de> Deserialize<'de> for EducationClass[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]