pub struct Severity {
    pub value: u8,
}
Expand description

uavcan.diagnostic.Severity.1.0

Fixed size 1 bytes

Generic message severity representation.

Fields§

§value: u8

The severity level ranging from 0 to 7, where low values represent low-severity (unimportant) messages, and high values represent high-severity (important) messages. Several mnemonics for the severity levels are defined below. Nodes are advised to implement output filtering mechanisms, allowing users to select the minimal severity for emitted messages; messages of the selected and higher severity levels will be published, and messages of lower severity will be suppressed (discarded).

saturated uint3

Always aligned, size 3 bits

Implementations§

source§

impl Severity

source

pub const TRACE: u8 = 0u8

Messages of this severity can be used only during development. They shall not be used in a fielded operational system.

source

pub const DEBUG: u8 = 1u8

Messages that can aid in troubleshooting. Messages of this severity and lower should be disabled by default.

source

pub const INFO: u8 = 2u8

General informational messages of low importance. Messages of this severity and lower should be disabled by default.

source

pub const NOTICE: u8 = 3u8

General informational messages of high importance. Messages of this severity and lower should be disabled by default.

source

pub const WARNING: u8 = 4u8

Messages reporting abnormalities and warning conditions. Messages of this severity and higher should be enabled by default.

source

pub const ERROR: u8 = 5u8

Messages reporting problems and error conditions. Messages of this severity and higher should be enabled by default.

source

pub const CRITICAL: u8 = 6u8

Messages reporting serious problems and critical conditions. Messages of this severity and higher should be always enabled.

source

pub const ALERT: u8 = 7u8

Notifications of dangerous circumstances that demand immediate attention. Messages of this severity should be always enabled.

Trait Implementations§

source§

impl DataType for Severity

source§

const EXTENT_BYTES: Option<u32> = None

This type is sealed.

source§

impl Deserialize for Severity

source§

fn deserialize(cursor: &mut ReadCursor<'_>) -> Result<Self, DeserializeError>where Self: Sized,

Deserializes a value and returns it
source§

fn deserialize_from_bytes(bytes: &[u8]) -> Result<Self, DeserializeError>where Self: Sized,

A convenience function that creates a cursor around the provided bytes and calls deserialize
source§

impl Serialize for Severity

source§

fn size_bits(&self) -> usize

Returns the size of the encoded form of this value, in bits Read more
source§

fn serialize(&self, cursor: &mut WriteCursor<'_>)

Serializes this value into a buffer Read more
source§

fn serialize_to_bytes(&self, bytes: &mut [u8])

A convenience function that creates a cursor around the provided bytes and calls serialize
source§

impl Message for Severity

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.