pub struct ExplorerUtxo {
pub outpoint: OutPoint,
pub amount: Amount,
pub confirmation_blocktime: Option<u64>,
pub is_spent: bool,
}Expand description
Information a UTXO that may be extracted from an on-chain explorer.
Fields§
§outpoint: OutPoint§amount: Amount§confirmation_blocktime: Option<u64>§is_spent: boolTrait Implementations§
Source§impl Clone for ExplorerUtxo
impl Clone for ExplorerUtxo
Source§fn clone(&self) -> ExplorerUtxo
fn clone(&self) -> ExplorerUtxo
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 ExplorerUtxo
impl Debug for ExplorerUtxo
impl Copy for ExplorerUtxo
Auto Trait Implementations§
impl Freeze for ExplorerUtxo
impl RefUnwindSafe for ExplorerUtxo
impl Send for ExplorerUtxo
impl Sync for ExplorerUtxo
impl Unpin for ExplorerUtxo
impl UnsafeUnpin for ExplorerUtxo
impl UnwindSafe for ExplorerUtxo
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