pub struct SystemBasedMarkValue {
pub name: String,
pub nmax: f32,
pub internal_grade_system_id: u64,
pub internal_grade_system_type: Option<String>,
pub grade: Grade,
}Fields§
§name: StringName of this system
nmax: f32Unknown, possibly the maximum mark in this system
internal_grade_system_id: u64Internal Unique ID for this grade system
internal_grade_system_type: Option<String>Internal name for this grade system
grade: GradeGraded value of this mark, contains the actual integer value in different systems
Trait Implementations§
Source§impl Clone for SystemBasedMarkValue
impl Clone for SystemBasedMarkValue
Source§fn clone(&self) -> SystemBasedMarkValue
fn clone(&self) -> SystemBasedMarkValue
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 SystemBasedMarkValue
impl Debug for SystemBasedMarkValue
Source§impl<'de> Deserialize<'de> for SystemBasedMarkValue
impl<'de> Deserialize<'de> for SystemBasedMarkValue
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 SystemBasedMarkValue
impl RefUnwindSafe for SystemBasedMarkValue
impl Send for SystemBasedMarkValue
impl Sync for SystemBasedMarkValue
impl Unpin for SystemBasedMarkValue
impl UnwindSafe for SystemBasedMarkValue
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