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