pub struct GetExchangeAccountAssetParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetExchangeAccountAssetParamsBuilder<S>
impl<S: State> GetExchangeAccountAssetParamsBuilder<S>
Sourcepub fn build(self) -> GetExchangeAccountAssetParamswhere
S: IsComplete,
pub fn build(self) -> GetExchangeAccountAssetParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn exchange_account_id(
self,
value: String,
) -> GetExchangeAccountAssetParamsBuilder<SetExchangeAccountId<S>>where
S::ExchangeAccountId: IsUnset,
pub fn exchange_account_id(
self,
value: String,
) -> GetExchangeAccountAssetParamsBuilder<SetExchangeAccountId<S>>where
S::ExchangeAccountId: IsUnset,
Required.
The ID of the exchange account to return
Sourcepub fn asset_id(
self,
value: String,
) -> GetExchangeAccountAssetParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
pub fn asset_id(
self,
value: String,
) -> GetExchangeAccountAssetParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
Required.
The ID of the asset to return
Auto Trait Implementations§
impl<S> Freeze for GetExchangeAccountAssetParamsBuilder<S>
impl<S> RefUnwindSafe for GetExchangeAccountAssetParamsBuilder<S>
impl<S> Send for GetExchangeAccountAssetParamsBuilder<S>
impl<S> Sync for GetExchangeAccountAssetParamsBuilder<S>
impl<S> Unpin for GetExchangeAccountAssetParamsBuilder<S>
impl<S> UnwindSafe for GetExchangeAccountAssetParamsBuilder<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