pub struct EducationStudent {
pub graduation_year: String,
pub grade: String,
pub birth_date: String,
pub gender: EducationGender,
pub student_number: String,
pub external_id: String,
}Fields§
§graduation_year: String§grade: String§birth_date: String§gender: EducationGender§student_number: String§external_id: StringTrait Implementations§
Source§impl Clone for EducationStudent
impl Clone for EducationStudent
Source§fn clone(&self) -> EducationStudent
fn clone(&self) -> EducationStudent
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 EducationStudent
impl Debug for EducationStudent
Source§impl<'de> Deserialize<'de> for EducationStudent
impl<'de> Deserialize<'de> for EducationStudent
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 EducationStudent
impl PartialEq for EducationStudent
Source§impl Serialize for EducationStudent
impl Serialize for EducationStudent
impl Eq for EducationStudent
impl StructuralPartialEq for EducationStudent
Auto Trait Implementations§
impl Freeze for EducationStudent
impl RefUnwindSafe for EducationStudent
impl Send for EducationStudent
impl Sync for EducationStudent
impl Unpin for EducationStudent
impl UnwindSafe for EducationStudent
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