pub enum LedgerTransactionValidationError {
ValidationError(TransactionValidationError),
GenesisTransactionNotCurrentlyPermitted,
UserTransactionNotCurrentlyPermitted,
ValidateTransactionNotCurrentlyPermitted,
ProtocolUpdateNotCurrentlyPermitted,
FlashNotCurrentlyPermitted,
}
Variants§
ValidationError(TransactionValidationError)
GenesisTransactionNotCurrentlyPermitted
UserTransactionNotCurrentlyPermitted
ValidateTransactionNotCurrentlyPermitted
ProtocolUpdateNotCurrentlyPermitted
FlashNotCurrentlyPermitted
Trait Implementations§
Source§impl Clone for LedgerTransactionValidationError
impl Clone for LedgerTransactionValidationError
Source§fn clone(&self) -> LedgerTransactionValidationError
fn clone(&self) -> LedgerTransactionValidationError
Returns a duplicate 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 From<PrepareError> for LedgerTransactionValidationError
impl From<PrepareError> for LedgerTransactionValidationError
Source§fn from(value: PrepareError) -> Self
fn from(value: PrepareError) -> Self
Converts to this type from the input type.
Source§impl From<TransactionValidationError> for LedgerTransactionValidationError
impl From<TransactionValidationError> for LedgerTransactionValidationError
Source§fn from(value: TransactionValidationError) -> Self
fn from(value: TransactionValidationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LedgerTransactionValidationError
impl RefUnwindSafe for LedgerTransactionValidationError
impl Send for LedgerTransactionValidationError
impl Sync for LedgerTransactionValidationError
impl Unpin for LedgerTransactionValidationError
impl UnwindSafe for LedgerTransactionValidationError
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