[][src]Struct graph_rs_types::entitytypes::EducationSchool

pub struct EducationSchool {
    pub principal_email: String,
    pub principal_name: String,
    pub external_principal_id: String,
    pub lowest_grade: String,
    pub highest_grade: String,
    pub school_number: String,
    pub external_id: String,
    pub phone: String,
    pub fax: String,
    pub created_by: IdentitySet,
    pub address: PhysicalAddress,
    pub classes: Vec<EducationClass>,
    pub users: Vec<EducationUser>,
}

Fields

principal_email: Stringprincipal_name: Stringexternal_principal_id: Stringlowest_grade: Stringhighest_grade: Stringschool_number: Stringexternal_id: Stringphone: Stringfax: Stringcreated_by: IdentitySetaddress: PhysicalAddressclasses: Vec<EducationClass>users: Vec<EducationUser>

Trait Implementations

impl Eq for EducationSchool[src]

impl Clone for EducationSchool[src]

impl PartialEq<EducationSchool> for EducationSchool[src]

impl Debug for EducationSchool[src]

impl Serialize for EducationSchool[src]

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