#[repr(u32)]pub enum MsgType {
Invalid = 0,
Cmd = 1,
Tlm = 2,
}Expand description
The type of a cFE message (Command or Telemetry).
Variants§
Invalid = 0
An invalid or unknown message type.
Cmd = 1
A command message.
Tlm = 2
A telemetry message.
Trait Implementations§
impl Copy for MsgType
impl Eq for MsgType
impl StructuralPartialEq for MsgType
Auto Trait Implementations§
impl Freeze for MsgType
impl RefUnwindSafe for MsgType
impl Send for MsgType
impl Sync for MsgType
impl Unpin for MsgType
impl UnsafeUnpin for MsgType
impl UnwindSafe for MsgType
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