#[repr(u8)]pub enum HierarchyLevel {
Platform = 0,
Squad = 1,
Platoon = 2,
Company = 3,
}Expand description
Hierarchy levels in the HIVE mesh
Variants§
Platform = 0
Platform/soldier level (leaf nodes)
Squad = 1
Squad level
Platoon = 2
Platoon level
Company = 3
Company level
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 Default for HierarchyLevel
impl Default for HierarchyLevel
Source§fn default() -> HierarchyLevel
fn default() -> HierarchyLevel
Returns the “default value” for a type. Read more
Source§impl From<HierarchyLevel> for u8
impl From<HierarchyLevel> for u8
Source§fn from(level: HierarchyLevel) -> Self
fn from(level: HierarchyLevel) -> Self
Converts to this type from the input type.
Source§impl From<u8> for HierarchyLevel
impl From<u8> 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
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 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