pub struct ScholarHistory {
pub from: Option<String>,
pub to: Option<String>,
pub current: Option<bool>,
pub title: Option<String>,
pub school: Option<String>,
}Fields§
§from: Option<String>§to: Option<String>§current: Option<bool>§title: Option<String>§school: Option<String>Implementations§
Source§impl ScholarHistory
impl ScholarHistory
pub fn new() -> ScholarHistory
Trait Implementations§
Source§impl Clone for ScholarHistory
impl Clone for ScholarHistory
Source§fn clone(&self) -> ScholarHistory
fn clone(&self) -> ScholarHistory
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 ScholarHistory
impl Debug for ScholarHistory
Source§impl Default for ScholarHistory
impl Default for ScholarHistory
Source§fn default() -> ScholarHistory
fn default() -> ScholarHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScholarHistory
impl<'de> Deserialize<'de> for ScholarHistory
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 ScholarHistory
impl PartialEq for ScholarHistory
Source§impl Serialize for ScholarHistory
impl Serialize for ScholarHistory
impl StructuralPartialEq for ScholarHistory
Auto Trait Implementations§
impl Freeze for ScholarHistory
impl RefUnwindSafe for ScholarHistory
impl Send for ScholarHistory
impl Sync for ScholarHistory
impl Unpin for ScholarHistory
impl UnwindSafe for ScholarHistory
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