pub struct DomainSnapshot {
pub domain: DecisionDomain,
pub confidence: f64,
pub signal: TrafficLight,
pub in_fallback: bool,
pub regime_label: &'static str,
}Expand description
A single frame’s confidence snapshot for one decision domain.
Fields§
§domain: DecisionDomainThe decision domain.
confidence: f64Confidence value (0.0 = no confidence, 1.0 = full confidence).
signal: TrafficLightCurrent traffic light signal.
in_fallback: boolWhether the domain is currently in fallback mode.
regime_label: &'static strActive strategy/action label index (for regime display).
Trait Implementations§
Source§impl Clone for DomainSnapshot
impl Clone for DomainSnapshot
Source§fn clone(&self) -> DomainSnapshot
fn clone(&self) -> DomainSnapshot
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 DomainSnapshot
impl Debug for DomainSnapshot
impl Copy for DomainSnapshot
Auto Trait Implementations§
impl Freeze for DomainSnapshot
impl RefUnwindSafe for DomainSnapshot
impl Send for DomainSnapshot
impl Sync for DomainSnapshot
impl Unpin for DomainSnapshot
impl UnsafeUnpin for DomainSnapshot
impl UnwindSafe for DomainSnapshot
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