pub struct RankGroupEntry {
pub user_id: i64,
pub display_name: String,
pub rank: Option<RankProgress>,
}Expand description
A scout grouped under their highest completed/awarded rank.
Fields§
§user_id: i64§display_name: String§rank: Option<RankProgress>The rank that placed them in this group. None for crossover scouts.
Trait Implementations§
Source§impl Clone for RankGroupEntry
impl Clone for RankGroupEntry
Source§fn clone(&self) -> RankGroupEntry
fn clone(&self) -> RankGroupEntry
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 moreAuto Trait Implementations§
impl Freeze for RankGroupEntry
impl RefUnwindSafe for RankGroupEntry
impl Send for RankGroupEntry
impl Sync for RankGroupEntry
impl Unpin for RankGroupEntry
impl UnsafeUnpin for RankGroupEntry
impl UnwindSafe for RankGroupEntry
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