pub struct RemoteWalletInfo {
pub model: String,
pub manufacturer: Manufacturer,
pub serial: String,
pub host_device_path: String,
pub pubkey: Pubkey,
pub error: Option<RemoteWalletError>,
}
Expand description
Remote wallet information.
Fields§
§model: String
RemoteWallet device model
manufacturer: Manufacturer
RemoteWallet device manufacturer
serial: String
RemoteWallet device serial number
host_device_path: String
RemoteWallet host device path
pubkey: Pubkey
Base pubkey of device at Safecoin derivation path
error: Option<RemoteWalletError>
Initial read error
Implementations§
source§impl RemoteWalletInfo
impl RemoteWalletInfo
pub fn parse_locator(locator: Locator) -> Self
pub fn get_pretty_path(&self) -> String
Trait Implementations§
source§impl Clone for RemoteWalletInfo
impl Clone for RemoteWalletInfo
source§fn clone(&self) -> RemoteWalletInfo
fn clone(&self) -> RemoteWalletInfo
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 moresource§impl Debug for RemoteWalletInfo
impl Debug for RemoteWalletInfo
source§impl Default for RemoteWalletInfo
impl Default for RemoteWalletInfo
source§fn default() -> RemoteWalletInfo
fn default() -> RemoteWalletInfo
Returns the “default value” for a type. Read more