#[non_exhaustive]pub enum TelemetrySlot {
BootSentinels,
SafeStopReport,
ServiceSetActive,
}Expand description
Typed name for one of the three allocated DPR-02 §5.3 telemetry slots.
Provides typed base /
len / end accessors
for the byte ranges declared in slot. The MMIO-typed handles
that perform the SRAM4 writes land in crate::hwcore::regs under
DPR-02a / DPR-02b per the platform’s “Register-Mashing Discipline”.
non_exhaustive so future Expert Review additions to DPR-02 §5.3
can extend the enum without breaking downstream match arms.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
BootSentinels
4 × u32 ring of boot sentinels per DPR-02 §5.3.
SafeStopReport
4 × u32 super::safe_stop::SafeStopReport persistence slot
per DPR-02 §5.3.
ServiceSetActive
4 × u32 active-ServiceSet bitmask + reserved activation timestamps per DPR-02 §5.3.
Implementations§
Source§impl TelemetrySlot
impl TelemetrySlot
Trait Implementations§
Source§impl Clone for TelemetrySlot
impl Clone for TelemetrySlot
Source§fn clone(&self) -> TelemetrySlot
fn clone(&self) -> TelemetrySlot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TelemetrySlot
Source§impl Debug for TelemetrySlot
impl Debug for TelemetrySlot
impl Eq for TelemetrySlot
Source§impl PartialEq for TelemetrySlot
impl PartialEq for TelemetrySlot
Source§fn eq(&self, other: &TelemetrySlot) -> bool
fn eq(&self, other: &TelemetrySlot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TelemetrySlot
Auto Trait Implementations§
impl Freeze for TelemetrySlot
impl RefUnwindSafe for TelemetrySlot
impl Send for TelemetrySlot
impl Sync for TelemetrySlot
impl Unpin for TelemetrySlot
impl UnsafeUnpin for TelemetrySlot
impl UnwindSafe for TelemetrySlot
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