pub struct VaultLock {
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
Vault lock object: funds manually locked for off-chain settlement or escrow.
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<'de> Deserialize<'de> for VaultLock
impl<'de> Deserialize<'de> for VaultLock
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 VaultLock
impl RefUnwindSafe for VaultLock
impl Send for VaultLock
impl Sync for VaultLock
impl Unpin for VaultLock
impl UnsafeUnpin for VaultLock
impl UnwindSafe for VaultLock
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