pub struct ProjectUserStats {
pub id: i32,
pub username: String,
pub project: i32,
pub points: i32,
pub rank: i32,
pub log_score: f64,
pub num_questions: i32,
pub num_questions_predicted: i32,
pub prize: f64,
pub coverage_avg: f64,
pub level: i32,
pub level_title: String,
}Fields§
§id: i32§username: String§project: i32§points: i32§rank: i32§log_score: f64§num_questions: i32§num_questions_predicted: i32§prize: f64§coverage_avg: f64§level: i32§level_title: StringImplementations§
Trait Implementations§
Source§impl Clone for ProjectUserStats
impl Clone for ProjectUserStats
Source§fn clone(&self) -> ProjectUserStats
fn clone(&self) -> ProjectUserStats
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 ProjectUserStats
impl Debug for ProjectUserStats
Source§impl<'de> Deserialize<'de> for ProjectUserStats
impl<'de> Deserialize<'de> for ProjectUserStats
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 ProjectUserStats
impl PartialEq for ProjectUserStats
Source§impl Serialize for ProjectUserStats
impl Serialize for ProjectUserStats
impl StructuralPartialEq for ProjectUserStats
Auto Trait Implementations§
impl Freeze for ProjectUserStats
impl RefUnwindSafe for ProjectUserStats
impl Send for ProjectUserStats
impl Sync for ProjectUserStats
impl Unpin for ProjectUserStats
impl UnwindSafe for ProjectUserStats
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