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 Solana derivation path
error: Option<RemoteWalletError>
Initial read error
Implementations
sourceimpl RemoteWalletInfo
impl RemoteWalletInfo
pub fn parse_locator(locator: Locator) -> Self
pub fn get_pretty_path(&self) -> String
Trait Implementations
sourceimpl Clone for RemoteWalletInfo
impl Clone for RemoteWalletInfo
sourcefn clone(&self) -> RemoteWalletInfo
fn clone(&self) -> RemoteWalletInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RemoteWalletInfo
impl Debug for RemoteWalletInfo
sourceimpl Default for RemoteWalletInfo
impl Default for RemoteWalletInfo
sourcefn default() -> RemoteWalletInfo
fn default() -> RemoteWalletInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for RemoteWalletInfo
impl Send for RemoteWalletInfo
impl Sync for RemoteWalletInfo
impl Unpin for RemoteWalletInfo
impl UnwindSafe for RemoteWalletInfo
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more