pub struct GetMaxSpendableAmountResponse {
pub max_spendable_amount: Option<String>,
}
Fields§
§max_spendable_amount: Option<String>
The maximum amount that can be spent from the vault account
Implementations§
Trait Implementations§
Source§impl Clone for GetMaxSpendableAmountResponse
impl Clone for GetMaxSpendableAmountResponse
Source§fn clone(&self) -> GetMaxSpendableAmountResponse
fn clone(&self) -> GetMaxSpendableAmountResponse
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 GetMaxSpendableAmountResponse
impl Default for GetMaxSpendableAmountResponse
Source§fn default() -> GetMaxSpendableAmountResponse
fn default() -> GetMaxSpendableAmountResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMaxSpendableAmountResponse
impl<'de> Deserialize<'de> for GetMaxSpendableAmountResponse
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 GetMaxSpendableAmountResponse
impl PartialEq for GetMaxSpendableAmountResponse
Source§fn eq(&self, other: &GetMaxSpendableAmountResponse) -> bool
fn eq(&self, other: &GetMaxSpendableAmountResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetMaxSpendableAmountResponse
Auto Trait Implementations§
impl Freeze for GetMaxSpendableAmountResponse
impl RefUnwindSafe for GetMaxSpendableAmountResponse
impl Send for GetMaxSpendableAmountResponse
impl Sync for GetMaxSpendableAmountResponse
impl Unpin for GetMaxSpendableAmountResponse
impl UnwindSafe for GetMaxSpendableAmountResponse
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