pub struct FundingReport {
pub alias: String,
pub address: String,
pub txid: String,
pub amount_btc: f64,
pub confirmation_blocks: Vec<String>,
pub confirmed_balance_sat: i64,
pub spendable_utxo_count: usize,
pub spendable_utxo_total_sat: i64,
}Expand description
Result of funding an LND wallet.
Fields§
§alias: StringFunded node alias.
address: StringOn-chain address generated by the funded node.
txid: StringFunding transaction id.
amount_btc: f64Funding amount in BTC.
confirmation_blocks: Vec<String>Block hashes mined to confirm the funding transaction.
confirmed_balance_sat: i64Confirmed LND wallet balance after funding.
spendable_utxo_count: usizeSpendable UTXO count after funding.
spendable_utxo_total_sat: i64Total spendable UTXO value after funding.
Trait Implementations§
Source§impl Clone for FundingReport
impl Clone for FundingReport
Source§fn clone(&self) -> FundingReport
fn clone(&self) -> FundingReport
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 FundingReport
impl Debug for FundingReport
Source§impl PartialEq for FundingReport
impl PartialEq for FundingReport
impl StructuralPartialEq for FundingReport
Auto Trait Implementations§
impl Freeze for FundingReport
impl RefUnwindSafe for FundingReport
impl Send for FundingReport
impl Sync for FundingReport
impl Unpin for FundingReport
impl UnsafeUnpin for FundingReport
impl UnwindSafe for FundingReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request