pub struct DeleteVaultLockResponse {
pub id: String,
pub vault_id: String,
pub network: String,
pub tid: String,
pub amount: String,
pub owner: String,
pub external_id: Option<String>,
pub reason: Option<String>,
pub date_created: String,
pub date_deleted: Option<String>,
}Expand description
Delete Vault Lock
Fields§
§id: String§vault_id: String§network: String§tid: String§amount: String§owner: String§external_id: Option<String>§reason: Option<String>§date_created: String§date_deleted: Option<String>Trait Implementations§
Source§impl Clone for DeleteVaultLockResponse
impl Clone for DeleteVaultLockResponse
Source§fn clone(&self) -> DeleteVaultLockResponse
fn clone(&self) -> DeleteVaultLockResponse
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 DeleteVaultLockResponse
impl Debug for DeleteVaultLockResponse
Source§impl<'de> Deserialize<'de> for DeleteVaultLockResponse
impl<'de> Deserialize<'de> for DeleteVaultLockResponse
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 DeleteVaultLockResponse
impl RefUnwindSafe for DeleteVaultLockResponse
impl Send for DeleteVaultLockResponse
impl Sync for DeleteVaultLockResponse
impl Unpin for DeleteVaultLockResponse
impl UnsafeUnpin for DeleteVaultLockResponse
impl UnwindSafe for DeleteVaultLockResponse
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