pub enum RadarThreatLevelType {
ThreatUnknown,
ThreatNone,
ThreatApproaching,
ThreatApproachingFast,
UnknownVariant(u8),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RadarThreatLevelType
impl Clone for RadarThreatLevelType
Source§fn clone(&self) -> RadarThreatLevelType
fn clone(&self) -> RadarThreatLevelType
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 RadarThreatLevelType
impl Debug for RadarThreatLevelType
Source§impl Display for RadarThreatLevelType
impl Display for RadarThreatLevelType
Source§impl From<&str> for RadarThreatLevelType
impl From<&str> for RadarThreatLevelType
Source§impl From<i64> for RadarThreatLevelType
impl From<i64> for RadarThreatLevelType
Source§impl From<u8> for RadarThreatLevelType
impl From<u8> for RadarThreatLevelType
Source§impl Hash for RadarThreatLevelType
impl Hash for RadarThreatLevelType
Source§impl Ord for RadarThreatLevelType
impl Ord for RadarThreatLevelType
Source§fn cmp(&self, other: &RadarThreatLevelType) -> Ordering
fn cmp(&self, other: &RadarThreatLevelType) -> 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 RadarThreatLevelType
impl PartialEq for RadarThreatLevelType
Source§impl PartialOrd for RadarThreatLevelType
impl PartialOrd for RadarThreatLevelType
Source§impl Serialize for RadarThreatLevelType
impl Serialize for RadarThreatLevelType
impl Copy for RadarThreatLevelType
impl Eq for RadarThreatLevelType
impl StructuralPartialEq for RadarThreatLevelType
Auto Trait Implementations§
impl Freeze for RadarThreatLevelType
impl RefUnwindSafe for RadarThreatLevelType
impl Send for RadarThreatLevelType
impl Sync for RadarThreatLevelType
impl Unpin for RadarThreatLevelType
impl UnwindSafe for RadarThreatLevelType
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