pub struct TestScore {
pub name: Option<Option<String>>,
pub score: Option<Option<String>>,
pub date_on: Option<Box<Date>>,
pub description: Option<Option<String>>,
}
Fields§
§name: Option<Option<String>>
Title of the course for which test score was derived from.
score: Option<Option<String>>
Test score
date_on: Option<Box<Date>>
§description: Option<Option<String>>
Description of the test score.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TestScore
impl<'de> Deserialize<'de> for TestScore
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 TestScore
Auto Trait Implementations§
impl Freeze for TestScore
impl RefUnwindSafe for TestScore
impl Send for TestScore
impl Sync for TestScore
impl Unpin for TestScore
impl UnwindSafe for TestScore
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