pub enum ProvenTransactionError {
AccountFinalHashMismatch(Digest, Digest),
AccountIdMismatch(AccountId, AccountId),
InputNotesError(TransactionInputError),
NoteDetailsForUnknownNotes(Vec<NoteId>),
OffChainAccountWithDetails(AccountId),
OnChainAccountMissingDetails(AccountId),
NewOnChainAccountRequiresFullDetails(AccountId),
ExistingOnChainAccountRequiresDeltaDetails(AccountId),
OutputNotesError(TransactionOutputError),
}Variants§
AccountFinalHashMismatch(Digest, Digest)
AccountIdMismatch(AccountId, AccountId)
InputNotesError(TransactionInputError)
NoteDetailsForUnknownNotes(Vec<NoteId>)
OffChainAccountWithDetails(AccountId)
OnChainAccountMissingDetails(AccountId)
NewOnChainAccountRequiresFullDetails(AccountId)
ExistingOnChainAccountRequiresDeltaDetails(AccountId)
OutputNotesError(TransactionOutputError)
Trait Implementations§
source§impl Clone for ProvenTransactionError
impl Clone for ProvenTransactionError
source§fn clone(&self) -> ProvenTransactionError
fn clone(&self) -> ProvenTransactionError
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 ProvenTransactionError
impl Debug for ProvenTransactionError
source§impl Display for ProvenTransactionError
impl Display for ProvenTransactionError
source§impl Error for ProvenTransactionError
impl Error for ProvenTransactionError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 ProvenTransactionError
impl PartialEq for ProvenTransactionError
source§fn eq(&self, other: &ProvenTransactionError) -> bool
fn eq(&self, other: &ProvenTransactionError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ProvenTransactionError
impl StructuralPartialEq for ProvenTransactionError
Auto Trait Implementations§
impl Freeze for ProvenTransactionError
impl RefUnwindSafe for ProvenTransactionError
impl Send for ProvenTransactionError
impl Sync for ProvenTransactionError
impl Unpin for ProvenTransactionError
impl UnwindSafe for ProvenTransactionError
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