pub enum SignOrCreationError<S = ()> {
SignError(S),
CreationError(CreationError),
}
Expand description
When signing using a fallible method either an user-supplied SignError
or a CreationError
may occur.
Variants§
SignError(S)
An error occurred during signing
CreationError(CreationError)
An error occurred while building the transaction
Trait Implementations§
source§impl<S: Clone> Clone for SignOrCreationError<S>
impl<S: Clone> Clone for SignOrCreationError<S>
source§fn clone(&self) -> SignOrCreationError<S>
fn clone(&self) -> SignOrCreationError<S>
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 more