pub struct RankDefinitions { /* private fields */ }Expand description
Collection of rank definitions
Implementations§
Source§impl RankDefinitions
impl RankDefinitions
Sourcepub fn add(&mut self, rank: RankDefinition)
pub fn add(&mut self, rank: RankDefinition)
Add a rank definition
Sourcepub fn get(&self, rank_id: &RankId) -> Option<&RankDefinition>
pub fn get(&self, rank_id: &RankId) -> Option<&RankDefinition>
Get a rank definition by ID
Sourcepub fn get_next_rank(&self, current_rank: &RankId) -> Option<&RankDefinition>
pub fn get_next_rank(&self, current_rank: &RankId) -> Option<&RankDefinition>
Get the next rank in progression
Sourcepub fn get_all_sorted(&self) -> Vec<&RankDefinition>
pub fn get_all_sorted(&self) -> Vec<&RankDefinition>
Get all ranks sorted by level
Sourcepub fn get_by_level(&self, level: u32) -> Option<&RankDefinition>
pub fn get_by_level(&self, level: u32) -> Option<&RankDefinition>
Get rank by level
Trait Implementations§
Source§impl Clone for RankDefinitions
impl Clone for RankDefinitions
Source§fn clone(&self) -> RankDefinitions
fn clone(&self) -> RankDefinitions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RankDefinitions
impl Debug for RankDefinitions
Source§impl Default for RankDefinitions
impl Default for RankDefinitions
Source§impl<'de> Deserialize<'de> for RankDefinitions
impl<'de> Deserialize<'de> for RankDefinitions
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 Resource for RankDefinitions
impl Resource for RankDefinitions
Source§fn resource_type(&self) -> &'static str
fn resource_type(&self) -> &'static str
Resource type name (for debugging)
Auto Trait Implementations§
impl Freeze for RankDefinitions
impl RefUnwindSafe for RankDefinitions
impl Send for RankDefinitions
impl Sync for RankDefinitions
impl Unpin for RankDefinitions
impl UnsafeUnpin for RankDefinitions
impl UnwindSafe for RankDefinitions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> Component for T
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more