pub struct GetWalletResponse {
pub id: String,
pub network: String,
pub address: Option<String>,
pub signing_key: Value,
pub status: String,
pub date_created: String,
pub date_deleted: Option<String>,
pub name: Option<String>,
pub custodial: bool,
pub external_id: Option<String>,
pub tags: Vec<String>,
pub validator_id: Option<String>,
}Expand description
Get Wallet
Fields§
§id: String§network: String§address: Option<String>§signing_key: Value§status: String§date_created: String§date_deleted: Option<String>§name: Option<String>§custodial: bool§external_id: Option<String>§validator_id: Option<String>Trait Implementations§
Source§impl Clone for GetWalletResponse
impl Clone for GetWalletResponse
Source§fn clone(&self) -> GetWalletResponse
fn clone(&self) -> GetWalletResponse
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 GetWalletResponse
impl Debug for GetWalletResponse
Source§impl<'de> Deserialize<'de> for GetWalletResponse
impl<'de> Deserialize<'de> for GetWalletResponse
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 GetWalletResponse
impl RefUnwindSafe for GetWalletResponse
impl Send for GetWalletResponse
impl Sync for GetWalletResponse
impl Unpin for GetWalletResponse
impl UnsafeUnpin for GetWalletResponse
impl UnwindSafe for GetWalletResponse
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