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 moreSource§impl<S: Debug> Debug for SignOrCreationError<S>
impl<S: Debug> Debug for SignOrCreationError<S>
Source§impl<S> Display for SignOrCreationError<S>
impl<S> Display for SignOrCreationError<S>
Source§impl<S: PartialEq> PartialEq for SignOrCreationError<S>
impl<S: PartialEq> PartialEq for SignOrCreationError<S>
impl<S: Eq> Eq for SignOrCreationError<S>
impl<S> StructuralPartialEq for SignOrCreationError<S>
Auto Trait Implementations§
impl<S> Freeze for SignOrCreationError<S>where
S: Freeze,
impl<S> RefUnwindSafe for SignOrCreationError<S>where
S: RefUnwindSafe,
impl<S> Send for SignOrCreationError<S>where
S: Send,
impl<S> Sync for SignOrCreationError<S>where
S: Sync,
impl<S> Unpin for SignOrCreationError<S>where
S: Unpin,
impl<S> UnwindSafe for SignOrCreationError<S>where
S: UnwindSafe,
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