pub struct WalletDetails {
pub login_type: Option<String>,
pub p12_data_base64: Option<String>,
pub sso_data_base64: Option<String>,
}Fields§
§login_type: Option<String>§p12_data_base64: Option<String>§sso_data_base64: Option<String>Implementations§
Source§impl WalletDetails
impl WalletDetails
pub fn new() -> WalletDetails
Trait Implementations§
Source§impl Clone for WalletDetails
impl Clone for WalletDetails
Source§fn clone(&self) -> WalletDetails
fn clone(&self) -> WalletDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WalletDetails
impl Debug for WalletDetails
Source§impl Default for WalletDetails
impl Default for WalletDetails
Source§fn default() -> WalletDetails
fn default() -> WalletDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WalletDetails
impl<'de> Deserialize<'de> for WalletDetails
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
Source§impl PartialEq for WalletDetails
impl PartialEq for WalletDetails
Source§fn eq(&self, other: &WalletDetails) -> bool
fn eq(&self, other: &WalletDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WalletDetails
impl Serialize for WalletDetails
impl StructuralPartialEq for WalletDetails
Auto Trait Implementations§
impl Freeze for WalletDetails
impl RefUnwindSafe for WalletDetails
impl Send for WalletDetails
impl Sync for WalletDetails
impl Unpin for WalletDetails
impl UnsafeUnpin for WalletDetails
impl UnwindSafe for WalletDetails
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