Enum lightning::routing::utxo::UtxoLookupError
source · pub enum UtxoLookupError {
UnknownChain,
UnknownTx,
}
Expand description
An error when accessing the chain via UtxoLookup
.
Variants§
UnknownChain
The requested chain is unknown.
UnknownTx
The requested transaction doesn’t exist or hasn’t confirmed.
Trait Implementations§
source§impl Clone for UtxoLookupError
impl Clone for UtxoLookupError
source§fn clone(&self) -> UtxoLookupError
fn clone(&self) -> UtxoLookupError
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 moreAuto Trait Implementations§
impl RefUnwindSafe for UtxoLookupError
impl Send for UtxoLookupError
impl Sync for UtxoLookupError
impl Unpin for UtxoLookupError
impl UnwindSafe for UtxoLookupError
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