pub struct UpdateWalletResponse {
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
Update 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 UpdateWalletResponse
impl Clone for UpdateWalletResponse
Source§fn clone(&self) -> UpdateWalletResponse
fn clone(&self) -> UpdateWalletResponse
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 UpdateWalletResponse
impl Debug for UpdateWalletResponse
Source§impl<'de> Deserialize<'de> for UpdateWalletResponse
impl<'de> Deserialize<'de> for UpdateWalletResponse
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 UpdateWalletResponse
impl RefUnwindSafe for UpdateWalletResponse
impl Send for UpdateWalletResponse
impl Sync for UpdateWalletResponse
impl Unpin for UpdateWalletResponse
impl UnsafeUnpin for UpdateWalletResponse
impl UnwindSafe for UpdateWalletResponse
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