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