pub struct RankGroup {
pub rank_name: String,
pub rank_order: usize,
pub scouts: Vec<RankGroupEntry>,
}Expand description
A rank with its grouped scouts.
Fields§
§rank_name: String§rank_order: usize§scouts: Vec<RankGroupEntry>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RankGroup
impl RefUnwindSafe for RankGroup
impl Send for RankGroup
impl Sync for RankGroup
impl Unpin for RankGroup
impl UnsafeUnpin for RankGroup
impl UnwindSafe for RankGroup
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