pub struct ReflexResult {
pub boundary_crossed: bool,
pub health_ok: bool,
pub anomaly_detected: bool,
}Expand description
Result of 3-bit reflex processing
Fields§
§boundary_crossed: bool§health_ok: bool§anomaly_detected: boolTrait Implementations§
Source§impl Clone for ReflexResult
impl Clone for ReflexResult
Source§fn clone(&self) -> ReflexResult
fn clone(&self) -> ReflexResult
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 moreAuto Trait Implementations§
impl Freeze for ReflexResult
impl RefUnwindSafe for ReflexResult
impl Send for ReflexResult
impl Sync for ReflexResult
impl Unpin for ReflexResult
impl UnwindSafe for ReflexResult
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