pub struct GetPublicKeyInfoParams {
pub derivation_path: Vec<i32>,
pub algorithm: String,
pub compressed: Option<bool>,
}
Expand description
struct for passing parameters to the method [get_public_key_info
]
Fields§
§derivation_path: Vec<i32>
An array of integers representing the full BIP44 derivation path of the requested public key. The first element must always be 44.
algorithm: String
§compressed: Option<bool>
Implementations§
Source§impl GetPublicKeyInfoParams
impl GetPublicKeyInfoParams
Sourcepub fn builder() -> GetPublicKeyInfoParamsBuilder
pub fn builder() -> GetPublicKeyInfoParamsBuilder
Create an instance of GetPublicKeyInfoParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetPublicKeyInfoParams
impl Clone for GetPublicKeyInfoParams
Source§fn clone(&self) -> GetPublicKeyInfoParams
fn clone(&self) -> GetPublicKeyInfoParams
Returns a copy 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 GetPublicKeyInfoParams
impl RefUnwindSafe for GetPublicKeyInfoParams
impl Send for GetPublicKeyInfoParams
impl Sync for GetPublicKeyInfoParams
impl Unpin for GetPublicKeyInfoParams
impl UnwindSafe for GetPublicKeyInfoParams
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