pub struct EducationClass {Show 13 fields
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: String
§mail_nickname: String
§description: String
§created_by: IdentitySet
§class_code: String
§external_name: String
§external_id: String
§external_source: EducationExternalSource
§term: EducationTerm
§schools: Vec<EducationSchool>
§members: Vec<EducationUser>
§teachers: Vec<EducationUser>
§group: Group
Trait Implementations§
Source§impl Clone for EducationClass
impl Clone for EducationClass
Source§fn clone(&self) -> EducationClass
fn clone(&self) -> EducationClass
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EducationClass
impl Debug for EducationClass
Source§impl<'de> Deserialize<'de> for EducationClass
impl<'de> Deserialize<'de> for EducationClass
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EducationClass
impl PartialEq for EducationClass
Source§impl Serialize for EducationClass
impl Serialize for EducationClass
impl Eq for EducationClass
impl StructuralPartialEq for EducationClass
Auto Trait Implementations§
impl Freeze for EducationClass
impl RefUnwindSafe for EducationClass
impl Send for EducationClass
impl Sync for EducationClass
impl Unpin for EducationClass
impl UnwindSafe for EducationClass
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more