pub struct GetMaxSpendableAmountParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetMaxSpendableAmountParamsBuilder<S>
impl<S: State> GetMaxSpendableAmountParamsBuilder<S>
Sourcepub fn build(self) -> GetMaxSpendableAmountParamswhere
S: IsComplete,
pub fn build(self) -> GetMaxSpendableAmountParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn vault_account_id(
self,
value: String,
) -> GetMaxSpendableAmountParamsBuilder<SetVaultAccountId<S>>where
S::VaultAccountId: IsUnset,
pub fn vault_account_id(
self,
value: String,
) -> GetMaxSpendableAmountParamsBuilder<SetVaultAccountId<S>>where
S::VaultAccountId: IsUnset,
Required.
The ID of the vault account, or ‘default’ for the default vault account
Sourcepub fn asset_id(
self,
value: String,
) -> GetMaxSpendableAmountParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
pub fn asset_id(
self,
value: String,
) -> GetMaxSpendableAmountParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
Required.
The ID of the asset
Sourcepub fn manual_signging(
self,
value: bool,
) -> GetMaxSpendableAmountParamsBuilder<SetManualSignging<S>>where
S::ManualSignging: IsUnset,
pub fn manual_signging(
self,
value: bool,
) -> GetMaxSpendableAmountParamsBuilder<SetManualSignging<S>>where
S::ManualSignging: IsUnset,
Sourcepub fn maybe_manual_signging(
self,
value: Option<bool>,
) -> GetMaxSpendableAmountParamsBuilder<SetManualSignging<S>>where
S::ManualSignging: IsUnset,
pub fn maybe_manual_signging(
self,
value: Option<bool>,
) -> GetMaxSpendableAmountParamsBuilder<SetManualSignging<S>>where
S::ManualSignging: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetMaxSpendableAmountParamsBuilder<S>
impl<S> RefUnwindSafe for GetMaxSpendableAmountParamsBuilder<S>
impl<S> Send for GetMaxSpendableAmountParamsBuilder<S>
impl<S> Sync for GetMaxSpendableAmountParamsBuilder<S>
impl<S> Unpin for GetMaxSpendableAmountParamsBuilder<S>
impl<S> UnwindSafe for GetMaxSpendableAmountParamsBuilder<S>
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