pub struct WalletSet {
pub id: String,
pub custody_type: CustodyType,
pub create_date: String,
pub update_date: String,
pub name: Option<String>,
pub user_id: Option<String>,
}Expand description
A wallet set resource.
Fields§
§id: StringUnique wallet set ID (UUID).
custody_type: CustodyTypeCustody type for wallets within this set.
create_date: StringISO-8601 creation timestamp.
update_date: StringISO-8601 last-update timestamp.
name: Option<String>Human-readable name.
user_id: Option<String>User ID associated with this wallet set (user-controlled wallets).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WalletSet
impl<'de> Deserialize<'de> for WalletSet
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 WalletSet
impl RefUnwindSafe for WalletSet
impl Send for WalletSet
impl Sync for WalletSet
impl Unpin for WalletSet
impl UnsafeUnpin for WalletSet
impl UnwindSafe for WalletSet
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