pub struct Education {
pub school_name: Option<String>,
pub degree: Option<String>,
pub field_of_study: Option<String>,
}
Expand description
An education entry
Fields§
§school_name: Option<String>
§degree: Option<String>
§field_of_study: Option<String>
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
impl StructuralPartialEq for Education
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