pub struct DerivedAddress {
pub schema_version: u8,
pub chain: String,
pub curve: String,
pub path: String,
pub account: u32,
pub change: u32,
pub index: u32,
pub script_type: String,
pub address: String,
pub public_key_hex: String,
}Fields§
§schema_version: u8§chain: String§curve: String§path: String§account: u32§change: u32§index: u32§script_type: String§address: String§public_key_hex: StringTrait Implementations§
Source§impl Clone for DerivedAddress
impl Clone for DerivedAddress
Source§fn clone(&self) -> DerivedAddress
fn clone(&self) -> DerivedAddress
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 DerivedAddress
impl Debug for DerivedAddress
Auto Trait Implementations§
impl Freeze for DerivedAddress
impl RefUnwindSafe for DerivedAddress
impl Send for DerivedAddress
impl Sync for DerivedAddress
impl Unpin for DerivedAddress
impl UnwindSafe for DerivedAddress
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