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