pub struct UserScores {
pub entries_before_search_filtering: u32,
pub entries_after_search_filtering: u32,
pub scores: Vec<UserScore>,
}Fields§
§entries_before_search_filtering: u32Number of scores matching selected criteria except search query
entries_after_search_filtering: u32Number of scores matching all criteria including search query
scores: Vec<UserScore>The range of scores that was requested
Auto Trait Implementations§
impl Freeze for UserScores
impl RefUnwindSafe for UserScores
impl Send for UserScores
impl Sync for UserScores
impl Unpin for UserScores
impl UnwindSafe for UserScores
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