pub struct GetAssetWalletsParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetAssetWalletsParamsBuilder<S>
impl<S: State> GetAssetWalletsParamsBuilder<S>
Sourcepub fn build(self) -> GetAssetWalletsParamswhere
S: IsComplete,
pub fn build(self) -> GetAssetWalletsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn total_amount_larger_than(
self,
value: f64,
) -> GetAssetWalletsParamsBuilder<SetTotalAmountLargerThan<S>>where
S::TotalAmountLargerThan: IsUnset,
pub fn total_amount_larger_than(
self,
value: f64,
) -> GetAssetWalletsParamsBuilder<SetTotalAmountLargerThan<S>>where
S::TotalAmountLargerThan: IsUnset,
Sourcepub fn maybe_total_amount_larger_than(
self,
value: Option<f64>,
) -> GetAssetWalletsParamsBuilder<SetTotalAmountLargerThan<S>>where
S::TotalAmountLargerThan: IsUnset,
pub fn maybe_total_amount_larger_than(
self,
value: Option<f64>,
) -> GetAssetWalletsParamsBuilder<SetTotalAmountLargerThan<S>>where
S::TotalAmountLargerThan: IsUnset,
Sourcepub fn asset_id(
self,
value: String,
) -> GetAssetWalletsParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
pub fn asset_id(
self,
value: String,
) -> GetAssetWalletsParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
Sourcepub fn maybe_asset_id(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
pub fn maybe_asset_id(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
Sourcepub fn order_by(
self,
value: String,
) -> GetAssetWalletsParamsBuilder<SetOrderBy<S>>where
S::OrderBy: IsUnset,
pub fn order_by(
self,
value: String,
) -> GetAssetWalletsParamsBuilder<SetOrderBy<S>>where
S::OrderBy: IsUnset,
Sourcepub fn maybe_order_by(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetOrderBy<S>>where
S::OrderBy: IsUnset,
pub fn maybe_order_by(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetOrderBy<S>>where
S::OrderBy: IsUnset,
Sourcepub fn before(self, value: String) -> GetAssetWalletsParamsBuilder<SetBefore<S>>where
S::Before: IsUnset,
pub fn before(self, value: String) -> GetAssetWalletsParamsBuilder<SetBefore<S>>where
S::Before: IsUnset,
Sourcepub fn maybe_before(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetBefore<S>>where
S::Before: IsUnset,
pub fn maybe_before(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetBefore<S>>where
S::Before: IsUnset,
Sourcepub fn after(self, value: String) -> GetAssetWalletsParamsBuilder<SetAfter<S>>where
S::After: IsUnset,
pub fn after(self, value: String) -> GetAssetWalletsParamsBuilder<SetAfter<S>>where
S::After: IsUnset,
Sourcepub fn maybe_after(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetAfter<S>>where
S::After: IsUnset,
pub fn maybe_after(
self,
value: Option<String>,
) -> GetAssetWalletsParamsBuilder<SetAfter<S>>where
S::After: IsUnset,
Sourcepub fn limit(self, value: f64) -> GetAssetWalletsParamsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
pub fn limit(self, value: f64) -> GetAssetWalletsParamsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
Sourcepub fn maybe_limit(
self,
value: Option<f64>,
) -> GetAssetWalletsParamsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
pub fn maybe_limit(
self,
value: Option<f64>,
) -> GetAssetWalletsParamsBuilder<SetLimit<S>>where
S::Limit: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetAssetWalletsParamsBuilder<S>
impl<S> RefUnwindSafe for GetAssetWalletsParamsBuilder<S>
impl<S> Send for GetAssetWalletsParamsBuilder<S>
impl<S> Sync for GetAssetWalletsParamsBuilder<S>
impl<S> Unpin for GetAssetWalletsParamsBuilder<S>
impl<S> UnwindSafe for GetAssetWalletsParamsBuilder<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