#[repr(C)]pub struct HkTlm {
pub cmd_count: u16,
pub err_count: u16,
}Expand description
Base housekeeping telemetry payload.
Contains the standard cmd/err counters that every cFS app reports. Placed after the telemetry header in the HK packet.
Fields§
§cmd_count: u16Total accepted commands since last reset.
err_count: u16Total rejected commands since last reset.
Trait Implementations§
impl Copy for HkTlm
Auto Trait Implementations§
impl Freeze for HkTlm
impl RefUnwindSafe for HkTlm
impl Send for HkTlm
impl Sync for HkTlm
impl Unpin for HkTlm
impl UnsafeUnpin for HkTlm
impl UnwindSafe for HkTlm
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