pub enum CosignSignatureError {
MissingSignature {
pk: PublicKey,
},
InvalidSignature {
pk: PublicKey,
},
NotEnoughNonces,
Invalid(&'static str),
}Expand description
Error returned from cosigning a VTXO tree.
Variants§
Trait Implementations§
Source§impl Debug for CosignSignatureError
impl Debug for CosignSignatureError
Source§impl Display for CosignSignatureError
impl Display for CosignSignatureError
Source§impl Error for CosignSignatureError
impl Error for CosignSignatureError
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 PartialEq for CosignSignatureError
impl PartialEq for CosignSignatureError
impl Eq for CosignSignatureError
impl StructuralPartialEq for CosignSignatureError
Auto Trait Implementations§
impl Freeze for CosignSignatureError
impl RefUnwindSafe for CosignSignatureError
impl Send for CosignSignatureError
impl Sync for CosignSignatureError
impl Unpin for CosignSignatureError
impl UnwindSafe for CosignSignatureError
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