pub struct AccountDiscoveryReport {
pub index: u32,
pub path_type: String,
pub primary_address: String,
pub spendable_sats: u64,
pub postage_sats: u64,
pub inscription_count: u32,
pub inscriptions: Vec<InscriptionPreview>,
pub taproot_external: String,
pub taproot_internal: String,
pub payment_external: Option<String>,
pub payment_internal: Option<String>,
}Fields§
§index: u32§path_type: String§primary_address: String§spendable_sats: u64§postage_sats: u64§inscription_count: u32§inscriptions: Vec<InscriptionPreview>§taproot_external: String§taproot_internal: String§payment_external: Option<String>§payment_internal: Option<String>Trait Implementations§
Source§impl Clone for AccountDiscoveryReport
impl Clone for AccountDiscoveryReport
Source§fn clone(&self) -> AccountDiscoveryReport
fn clone(&self) -> AccountDiscoveryReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AccountDiscoveryReport
impl Debug for AccountDiscoveryReport
Source§impl<'de> Deserialize<'de> for AccountDiscoveryReport
impl<'de> Deserialize<'de> for AccountDiscoveryReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AccountDiscoveryReport
impl RefUnwindSafe for AccountDiscoveryReport
impl Send for AccountDiscoveryReport
impl Sync for AccountDiscoveryReport
impl Unpin for AccountDiscoveryReport
impl UnsafeUnpin for AccountDiscoveryReport
impl UnwindSafe for AccountDiscoveryReport
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