pub enum BoardFromVtxoError {
FundingTxMismatch {
expected: Txid,
got: Txid,
},
ServerPubkeyMismatch {
expected: PublicKey,
got: PublicKey,
},
VtxoIdMismatch {
expected: OutPoint,
got: OutPoint,
},
IncorrectGenesisItemCount {
genesis_count: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for BoardFromVtxoError
impl Clone for BoardFromVtxoError
Source§fn clone(&self) -> BoardFromVtxoError
fn clone(&self) -> BoardFromVtxoError
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 Debug for BoardFromVtxoError
impl Debug for BoardFromVtxoError
Source§impl Display for BoardFromVtxoError
impl Display for BoardFromVtxoError
Source§impl Error for BoardFromVtxoError
impl Error for BoardFromVtxoError
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()
Auto Trait Implementations§
impl Freeze for BoardFromVtxoError
impl RefUnwindSafe for BoardFromVtxoError
impl Send for BoardFromVtxoError
impl Sync for BoardFromVtxoError
impl Unpin for BoardFromVtxoError
impl UnsafeUnpin for BoardFromVtxoError
impl UnwindSafe for BoardFromVtxoError
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