pub enum PacketKind {
Message,
Command,
Telemetry,
}Variants§
Message
Legacy generic Software Bus packet. cFS generators infer command vs telemetry.
Command
cFS Software Bus command packet.
Telemetry
cFS Software Bus telemetry packet.
Trait Implementations§
Source§impl Clone for PacketKind
impl Clone for PacketKind
Source§fn clone(&self) -> PacketKind
fn clone(&self) -> PacketKind
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 PacketKind
impl Debug for PacketKind
Source§impl PartialEq for PacketKind
impl PartialEq for PacketKind
impl Copy for PacketKind
impl Eq for PacketKind
impl StructuralPartialEq for PacketKind
Auto Trait Implementations§
impl Freeze for PacketKind
impl RefUnwindSafe for PacketKind
impl Send for PacketKind
impl Sync for PacketKind
impl Unpin for PacketKind
impl UnsafeUnpin for PacketKind
impl UnwindSafe for PacketKind
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