pub struct GetPublicKeyInfoForAddressParams {
pub vault_account_id: String,
pub asset_id: String,
pub change: f64,
pub address_index: f64,
pub compressed: Option<bool>,
}Expand description
struct for passing parameters to the method
VaultsApi::get_public_key_info_for_address
Fields§
§vault_account_id: String§asset_id: String§change: f64BIP44 derivation path - change value
address_index: f64BIP44 derivation path - index value
compressed: Option<bool>Compressed/Uncompressed public key format
Implementations§
Source§impl GetPublicKeyInfoForAddressParams
impl GetPublicKeyInfoForAddressParams
Sourcepub fn builder() -> GetPublicKeyInfoForAddressParamsBuilder
pub fn builder() -> GetPublicKeyInfoForAddressParamsBuilder
Create an instance of GetPublicKeyInfoForAddressParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetPublicKeyInfoForAddressParams
impl Clone for GetPublicKeyInfoForAddressParams
Source§fn clone(&self) -> GetPublicKeyInfoForAddressParams
fn clone(&self) -> GetPublicKeyInfoForAddressParams
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 GetPublicKeyInfoForAddressParams
impl RefUnwindSafe for GetPublicKeyInfoForAddressParams
impl Send for GetPublicKeyInfoForAddressParams
impl Sync for GetPublicKeyInfoForAddressParams
impl Unpin for GetPublicKeyInfoForAddressParams
impl UnwindSafe for GetPublicKeyInfoForAddressParams
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