pub struct PatrolBreakdown {
pub member_count: usize,
pub rank_counts: HashMap<String, usize>,
}Expand description
Rank breakdown within a single patrol.
Fields§
§member_count: usize§rank_counts: HashMap<String, usize>Rank name → count of members at that rank.
Trait Implementations§
Source§impl Clone for PatrolBreakdown
impl Clone for PatrolBreakdown
Source§fn clone(&self) -> PatrolBreakdown
fn clone(&self) -> PatrolBreakdown
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 PatrolBreakdown
impl RefUnwindSafe for PatrolBreakdown
impl Send for PatrolBreakdown
impl Sync for PatrolBreakdown
impl Unpin for PatrolBreakdown
impl UnsafeUnpin for PatrolBreakdown
impl UnwindSafe for PatrolBreakdown
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