pub struct Education {
pub starts_at: Option<Box<Date>>,
pub ends_at: Option<Box<Date>>,
pub field_of_study: Option<Option<String>>,
pub degree_name: Option<Option<String>>,
pub school: Option<Option<String>>,
pub school_linkedin_profile_url: Option<Option<String>>,
pub description: Option<Option<String>>,
pub logo_url: Option<Option<String>>,
pub grade: Option<String>,
pub activities_and_societies: Option<String>,
}
Fields§
§starts_at: Option<Box<Date>>
§ends_at: Option<Box<Date>>
§field_of_study: Option<Option<String>>
§degree_name: Option<Option<String>>
§school: Option<Option<String>>
§school_linkedin_profile_url: Option<Option<String>>
§description: Option<Option<String>>
§logo_url: Option<Option<String>>
§grade: Option<String>
§activities_and_societies: Option<String>
Implementations§
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