pub enum TransitionError {
InvalidEvent(ValidationError),
MissingInitialAssertion,
DuplicateAssertion,
FactIdMismatch,
FactShapeMismatch,
ReinforcementValueMismatch,
TerminalStateMutation(FactLifecycle),
InsufficientAuthority {
incumbent: AuthorityLevel,
challenger: AuthorityLevel,
},
CanonicalContradiction,
}Variants§
InvalidEvent(ValidationError)
MissingInitialAssertion
DuplicateAssertion
FactIdMismatch
FactShapeMismatch
ReinforcementValueMismatch
TerminalStateMutation(FactLifecycle)
InsufficientAuthority
A belief-changing event was rejected because its authority strictly under-ranks
the incumbent’s. Shared by supersession and retraction (ADR 0008): a
replacement or a retraction must out-rank or tie the incumbent. (Supersession is
additionally checked for laundering in arbitrate; retraction carries no backing
fact, so this authority gate is its complete check. Contradiction is not gated
— dissent is always admitted.)
CanonicalContradiction
A fact.contradicted event targeted a canonical fact. Canonical facts are
not softly contested; a genuine change must arrive as an equal-authority
supersession. This is the LFI hard-alarm tier.
Trait Implementations§
Source§impl Clone for TransitionError
impl Clone for TransitionError
Source§fn clone(&self) -> TransitionError
fn clone(&self) -> TransitionError
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 TransitionError
impl Debug for TransitionError
Source§impl Display for TransitionError
impl Display for TransitionError
impl Eq for TransitionError
Source§impl Error for TransitionError
impl Error for TransitionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for TransitionError
impl PartialEq for TransitionError
impl StructuralPartialEq for TransitionError
Auto Trait Implementations§
impl Freeze for TransitionError
impl RefUnwindSafe for TransitionError
impl Send for TransitionError
impl Sync for TransitionError
impl Unpin for TransitionError
impl UnsafeUnpin for TransitionError
impl UnwindSafe for TransitionError
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