pub enum RevealError {
UnrelatedTransition(OpId),
}
Variants§
the provided state transition is not a part of the bundle
Trait Implementations§
Source§impl Clone for RevealError
impl Clone for RevealError
Source§fn clone(&self) -> RevealError
fn clone(&self) -> RevealError
Returns a copy 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 moreSource§impl Debug for RevealError
impl Debug for RevealError
Source§impl Display for RevealError
impl Display for RevealError
Source§impl Error for RevealError
impl Error for RevealError
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<E1: Error, E2: Error> From<RevealError> for ConsignerError<E1, E2>
impl<E1: Error, E2: Error> From<RevealError> for ConsignerError<E1, E2>
Source§fn from(v: RevealError) -> Self
fn from(v: RevealError) -> Self
Converts to this type from the input type.
Source§impl<E: Error> From<RevealError> for InventoryDataError<E>
impl<E: Error> From<RevealError> for InventoryDataError<E>
Source§fn from(v: RevealError) -> Self
fn from(v: RevealError) -> Self
Converts to this type from the input type.
Source§impl<E: Error> From<RevealError> for InventoryError<E>
impl<E: Error> From<RevealError> for InventoryError<E>
Source§fn from(v: RevealError) -> Self
fn from(v: RevealError) -> Self
Converts to this type from the input type.
Source§impl From<RevealError> for InventoryInconsistency
impl From<RevealError> for InventoryInconsistency
Source§fn from(v: RevealError) -> Self
fn from(v: RevealError) -> Self
Converts to this type from the input type.
Source§impl From<RevealError> for String
impl From<RevealError> for String
Source§fn from(err: RevealError) -> Self
fn from(err: RevealError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RevealError
impl PartialEq for RevealError
impl Copy for RevealError
impl Eq for RevealError
impl StructuralPartialEq for RevealError
Auto Trait Implementations§
impl Freeze for RevealError
impl RefUnwindSafe for RevealError
impl Send for RevealError
impl Sync for RevealError
impl Unpin for RevealError
impl UnwindSafe for RevealError
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.