pub struct CreateMultipleVaultAccountsJobStatus {
pub status: String,
pub vault_accounts: Option<HashMap<String, HashMap<String, String>>>,
pub error_message: Option<String>,
}Fields§
§status: String§vault_accounts: Option<HashMap<String, HashMap<String, String>>>Mapping between VaultAccountId to a mapping of asset to address
error_message: Option<String>Implementations§
Source§impl CreateMultipleVaultAccountsJobStatus
impl CreateMultipleVaultAccountsJobStatus
pub fn new(status: String) -> CreateMultipleVaultAccountsJobStatus
Trait Implementations§
Source§impl Clone for CreateMultipleVaultAccountsJobStatus
impl Clone for CreateMultipleVaultAccountsJobStatus
Source§fn clone(&self) -> CreateMultipleVaultAccountsJobStatus
fn clone(&self) -> CreateMultipleVaultAccountsJobStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CreateMultipleVaultAccountsJobStatus
impl Default for CreateMultipleVaultAccountsJobStatus
Source§fn default() -> CreateMultipleVaultAccountsJobStatus
fn default() -> CreateMultipleVaultAccountsJobStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateMultipleVaultAccountsJobStatus
impl<'de> Deserialize<'de> for CreateMultipleVaultAccountsJobStatus
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
Source§impl PartialEq for CreateMultipleVaultAccountsJobStatus
impl PartialEq for CreateMultipleVaultAccountsJobStatus
Source§fn eq(&self, other: &CreateMultipleVaultAccountsJobStatus) -> bool
fn eq(&self, other: &CreateMultipleVaultAccountsJobStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateMultipleVaultAccountsJobStatus
Auto Trait Implementations§
impl Freeze for CreateMultipleVaultAccountsJobStatus
impl RefUnwindSafe for CreateMultipleVaultAccountsJobStatus
impl Send for CreateMultipleVaultAccountsJobStatus
impl Sync for CreateMultipleVaultAccountsJobStatus
impl Unpin for CreateMultipleVaultAccountsJobStatus
impl UnwindSafe for CreateMultipleVaultAccountsJobStatus
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