#[non_exhaustive]pub enum HaltReason {
Manual(String),
QuorumLost,
RiskBreach(String),
}Expand description
Why the kill switch was engaged. Recorded alongside the latch for post-incident analysis.
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.
Manual(String)
Operator pulled the switch manually; carries a free-form note.
QuorumLost
SBR / quorum machinery reported quorum loss (see
KillSwitchQuorumObserver).
RiskBreach(String)
A risk/pre-trade guard tripped; carries a description.
Trait Implementations§
Source§impl Clone for HaltReason
impl Clone for HaltReason
Source§fn clone(&self) -> HaltReason
fn clone(&self) -> HaltReason
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 moreSource§impl Debug for HaltReason
impl Debug for HaltReason
Source§impl PartialEq for HaltReason
impl PartialEq for HaltReason
Source§fn eq(&self, other: &HaltReason) -> bool
fn eq(&self, other: &HaltReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for HaltReason
impl StructuralPartialEq for HaltReason
Auto Trait Implementations§
impl Freeze for HaltReason
impl RefUnwindSafe for HaltReason
impl Send for HaltReason
impl Sync for HaltReason
impl Unpin for HaltReason
impl UnsafeUnpin for HaltReason
impl UnwindSafe for HaltReason
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.