pub enum CircleStateError {
Invariant(String),
Protocol(StoreProtocolError),
Json {
operation: &'static str,
source: Error,
},
Encryption {
operation: &'static str,
circle_id: CircleId,
source: EncryptionError,
},
}Expand description
The local device’s own exclusion from a Circle epoch close, derived strictly from the verified successor outcome at materialization. It records the exact close and successor an excluded device must reset from. Never derived from unverified storage. Verified Circle activation state that contradicts itself, its control, or the commit that carries it. Produced by the activation values’ own validation; workflow errors wrap it at the operation boundary.
Variants§
Trait Implementations§
Source§impl Debug for CircleStateError
impl Debug for CircleStateError
Source§impl Display for CircleStateError
impl Display for CircleStateError
Source§impl Error for CircleStateError
impl Error for CircleStateError
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 From<StoreProtocolError> for CircleStateError
impl From<StoreProtocolError> for CircleStateError
Source§fn from(source: StoreProtocolError) -> Self
fn from(source: StoreProtocolError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CircleStateError
impl !RefUnwindSafe for CircleStateError
impl Send for CircleStateError
impl Sync for CircleStateError
impl Unpin for CircleStateError
impl UnsafeUnpin for CircleStateError
impl !UnwindSafe for CircleStateError
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