pub enum Signal {
Resolved(Trit),
Held {
confidence: f64,
},
}Variants§
Resolved(Trit)
The evidence was decisive — the action may proceed with this trit.
Held
The evidence landed in the tend zone. This is not a failure state — it is the point of the mechanism: don’t force a decision, suspend and wait.
Trait Implementations§
impl StructuralPartialEq for Signal
Auto Trait Implementations§
impl Freeze for Signal
impl RefUnwindSafe for Signal
impl Send for Signal
impl Sync for Signal
impl Unpin for Signal
impl UnsafeUnpin for Signal
impl UnwindSafe for Signal
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