pub struct WalletDetails {
pub id: Option<String>,
pub name: String,
}
Expand description
Wallet details
Fields§
§id: Option<String>
Documented as “id” in the API docs, but is actually not sent
name: String
Name
Trait Implementations§
Source§impl Debug for WalletDetails
impl Debug for WalletDetails
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
Auto Trait Implementations§
impl Freeze for WalletDetails
impl RefUnwindSafe for WalletDetails
impl Send for WalletDetails
impl Sync for WalletDetails
impl Unpin 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