pub enum MavSeverity {
Emergency,
Alert,
Critical,
Error,
Warning,
Notice,
Info,
Debug,
}Expand description
MAVLink message severity level (MAV_SEVERITY).
Variants§
Trait Implementations§
Source§impl Clone for MavSeverity
impl Clone for MavSeverity
Source§fn clone(&self) -> MavSeverity
fn clone(&self) -> MavSeverity
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 MavSeverity
impl Debug for MavSeverity
Source§impl<'de> Deserialize<'de> for MavSeverity
impl<'de> Deserialize<'de> for MavSeverity
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 MavSeverity
impl Display for MavSeverity
Source§impl PartialEq for MavSeverity
impl PartialEq for MavSeverity
Source§impl Serialize for MavSeverity
impl Serialize for MavSeverity
impl Copy for MavSeverity
impl Eq for MavSeverity
impl StructuralPartialEq for MavSeverity
Auto Trait Implementations§
impl Freeze for MavSeverity
impl RefUnwindSafe for MavSeverity
impl Send for MavSeverity
impl Sync for MavSeverity
impl Unpin for MavSeverity
impl UnsafeUnpin for MavSeverity
impl UnwindSafe for MavSeverity
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