pub struct EducationRoot {
pub classes: Vec<EducationClass>,
pub schools: Vec<EducationSchool>,
pub users: Vec<EducationUser>,
pub me: EducationUser,
}
Fields§
§classes: Vec<EducationClass>
§schools: Vec<EducationSchool>
§users: Vec<EducationUser>
§me: EducationUser
Trait Implementations§
Source§impl Clone for EducationRoot
impl Clone for EducationRoot
Source§fn clone(&self) -> EducationRoot
fn clone(&self) -> EducationRoot
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 EducationRoot
impl Debug for EducationRoot
Source§impl<'de> Deserialize<'de> for EducationRoot
impl<'de> Deserialize<'de> for EducationRoot
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 EducationRoot
impl PartialEq for EducationRoot
Source§impl Serialize for EducationRoot
impl Serialize for EducationRoot
impl Eq for EducationRoot
impl StructuralPartialEq for EducationRoot
Auto Trait Implementations§
impl Freeze for EducationRoot
impl RefUnwindSafe for EducationRoot
impl Send for EducationRoot
impl Sync for EducationRoot
impl Unpin for EducationRoot
impl UnwindSafe for EducationRoot
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