pub struct GetMaxSpendableAmountParams {
pub vault_account_id: String,
pub asset_id: String,
pub manual_signing: Option<bool>,
}Expand description
struct for passing parameters to the method
VaultsApi::get_max_spendable_amount
Fields§
§vault_account_id: StringThe ID of the vault account, or ‘default’ for the default vault account
asset_id: StringThe ID of the asset
manual_signing: Option<bool>False by default. The maximum number of inputs depends on whether the transaction will be signed by an automated co-signer server or on a mobile device.
Implementations§
Source§impl GetMaxSpendableAmountParams
impl GetMaxSpendableAmountParams
Sourcepub fn builder() -> GetMaxSpendableAmountParamsBuilder
pub fn builder() -> GetMaxSpendableAmountParamsBuilder
Create an instance of GetMaxSpendableAmountParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetMaxSpendableAmountParams
impl Clone for GetMaxSpendableAmountParams
Source§fn clone(&self) -> GetMaxSpendableAmountParams
fn clone(&self) -> GetMaxSpendableAmountParams
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 moreAuto Trait Implementations§
impl Freeze for GetMaxSpendableAmountParams
impl RefUnwindSafe for GetMaxSpendableAmountParams
impl Send for GetMaxSpendableAmountParams
impl Sync for GetMaxSpendableAmountParams
impl Unpin for GetMaxSpendableAmountParams
impl UnwindSafe for GetMaxSpendableAmountParams
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