pub struct BrowserWalletAccountInfoProps {
pub address: String,
pub public_key: Vec<u8>,
pub chains: Vec<String>,
pub features: Vec<String>,
pub label: Option<String>,
pub icon: Option<String>,
}Fields§
§address: String§public_key: Vec<u8>§chains: Vec<String>§features: Vec<String>§label: Option<String>§icon: Option<String>Implementations§
Source§impl BrowserWalletAccountInfoProps
impl BrowserWalletAccountInfoProps
Sourcepub fn builder() -> BrowserWalletAccountInfoPropsBuilder<((), (), (), (), (), ())>
pub fn builder() -> BrowserWalletAccountInfoPropsBuilder<((), (), (), (), (), ())>
Create a builder for building BrowserWalletAccountInfoProps.
On the builder, call .address(...), .public_key(...), .chains(...)(optional), .features(...)(optional), .label(...)(optional), .icon(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of BrowserWalletAccountInfoProps.
Trait Implementations§
Source§impl Clone for BrowserWalletAccountInfoProps
impl Clone for BrowserWalletAccountInfoProps
Source§fn clone(&self) -> BrowserWalletAccountInfoProps
fn clone(&self) -> BrowserWalletAccountInfoProps
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<'de> Deserialize<'de> for BrowserWalletAccountInfoProps
impl<'de> Deserialize<'de> for BrowserWalletAccountInfoProps
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BrowserWalletAccountInfoProps
impl RefUnwindSafe for BrowserWalletAccountInfoProps
impl Send for BrowserWalletAccountInfoProps
impl Sync for BrowserWalletAccountInfoProps
impl Unpin for BrowserWalletAccountInfoProps
impl UnwindSafe for BrowserWalletAccountInfoProps
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