pub struct Education {
pub university: Option<u64>,
pub university_name: Option<String>,
pub faculty: Option<u64>,
pub faculty_name: Option<String>,
pub graduation: Option<u64>,
}Expand description
Information about the higher educational institution of the user.
Fields§
§university: Option<u64>University ID
university_name: Option<String>The name of the university
faculty: Option<u64>ID of the faculty
faculty_name: Option<String>The name of the faculty
graduation: Option<u64>Year of end
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Education
impl<'de> Deserialize<'de> for Education
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
Auto Trait Implementations§
impl Freeze for Education
impl RefUnwindSafe for Education
impl Send for Education
impl Sync for Education
impl Unpin for Education
impl UnwindSafe for Education
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