pub enum HierarchyLevel {
Platform = 0,
Squad = 1,
Platoon = 2,
Company = 3,
}Expand description
Hierarchy level in military command structure
Variants§
Platform = 0
Individual platform (vehicle, soldier, etc.)
Squad = 1
Squad level (typically 4-13 platforms)
Platoon = 2
Platoon level (typically 2-4 squads)
Company = 3
Company level (typically 2-4 platoons)
Implementations§
Source§impl HierarchyLevel
impl HierarchyLevel
Sourcepub fn parent(&self) -> Option<HierarchyLevel>
pub fn parent(&self) -> Option<HierarchyLevel>
Get the parent level in the hierarchy
Sourcepub fn child(&self) -> Option<HierarchyLevel>
pub fn child(&self) -> Option<HierarchyLevel>
Get the child level in the hierarchy
Sourcepub fn can_be_parent_of(&self, child: &HierarchyLevel) -> bool
pub fn can_be_parent_of(&self, child: &HierarchyLevel) -> bool
Check if this level can be a parent of another level A level can be parent if it’s at least one level higher in hierarchy
Trait Implementations§
Source§impl Clone for HierarchyLevel
impl Clone for HierarchyLevel
Source§fn clone(&self) -> HierarchyLevel
fn clone(&self) -> HierarchyLevel
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 moreSource§impl Debug for HierarchyLevel
impl Debug for HierarchyLevel
Source§impl<'de> Deserialize<'de> for HierarchyLevel
impl<'de> Deserialize<'de> for HierarchyLevel
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 Display for HierarchyLevel
impl Display for HierarchyLevel
Source§impl Hash for HierarchyLevel
impl Hash for HierarchyLevel
Source§impl Ord for HierarchyLevel
impl Ord for HierarchyLevel
Source§fn cmp(&self, other: &HierarchyLevel) -> Ordering
fn cmp(&self, other: &HierarchyLevel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HierarchyLevel
impl PartialEq for HierarchyLevel
Source§impl PartialOrd for HierarchyLevel
impl PartialOrd for HierarchyLevel
Source§impl Serialize for HierarchyLevel
impl Serialize for HierarchyLevel
impl Copy for HierarchyLevel
impl Eq for HierarchyLevel
impl StructuralPartialEq for HierarchyLevel
Auto Trait Implementations§
impl Freeze for HierarchyLevel
impl RefUnwindSafe for HierarchyLevel
impl Send for HierarchyLevel
impl Sync for HierarchyLevel
impl Unpin for HierarchyLevel
impl UnsafeUnpin for HierarchyLevel
impl UnwindSafe for HierarchyLevel
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.