pub struct WalletUtxo {
pub outpoint: OutPoint,
pub amount_sat: u64,
pub path: Bip86Path,
pub reserved: bool,
pub reserved_for: Option<String>,
}Expand description
UTXO entry in the wallet
Fields§
§outpoint: OutPoint§amount_sat: u64§path: Bip86Path§reserved: bool§reserved_for: Option<String>Trait Implementations§
Source§impl Clone for WalletUtxo
impl Clone for WalletUtxo
Source§fn clone(&self) -> WalletUtxo
fn clone(&self) -> WalletUtxo
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 moreAuto Trait Implementations§
impl Freeze for WalletUtxo
impl RefUnwindSafe for WalletUtxo
impl Send for WalletUtxo
impl Sync for WalletUtxo
impl Unpin for WalletUtxo
impl UnsafeUnpin for WalletUtxo
impl UnwindSafe for WalletUtxo
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