pub struct DecodeRingDecision {
pub slots: usize,
pub skip_reason: Option<&'static str>,
}Expand description
Outcome of the ring-depth decision.
skip_reason is Some only for the IMPLICIT skip (speculative decode /
watchdogs off) — never for an explicit ATLAS_SSM_DECODE_RING=0
override — so the allocating call site can log the savings once.
Fields§
§slots: usize§skip_reason: Option<&'static str>Auto Trait Implementations§
impl Freeze for DecodeRingDecision
impl RefUnwindSafe for DecodeRingDecision
impl Send for DecodeRingDecision
impl Sync for DecodeRingDecision
impl Unpin for DecodeRingDecision
impl UnwindSafe for DecodeRingDecision
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