pub struct SetBufferedAmountLowThresholdRequestBuilder<State>(/* private fields */);
Expand description
Builder for serializing an instance of the SetBufferedAmountLowThresholdRequest type.
Can be created using the SetBufferedAmountLowThresholdRequest::builder method.
Implementations§
Source§impl SetBufferedAmountLowThresholdRequestBuilder<()>
impl SetBufferedAmountLowThresholdRequestBuilder<()>
Sourcepub fn threshold<T0>(
self,
value: T0,
) -> SetBufferedAmountLowThresholdRequestBuilder<(T0,)>
pub fn threshold<T0>( self, value: T0, ) -> SetBufferedAmountLowThresholdRequestBuilder<(T0,)>
Setter for the threshold
field.
Sourcepub fn threshold_as_default(
self,
) -> SetBufferedAmountLowThresholdRequestBuilder<(DefaultValue,)>
pub fn threshold_as_default( self, ) -> SetBufferedAmountLowThresholdRequestBuilder<(DefaultValue,)>
Sets the threshold
field to the default value.
Source§impl<T0> SetBufferedAmountLowThresholdRequestBuilder<(T0,)>
impl<T0> SetBufferedAmountLowThresholdRequestBuilder<(T0,)>
Sourcepub fn finish(
self,
builder: &mut Builder,
) -> Offset<SetBufferedAmountLowThresholdRequest>where
Self: WriteAsOffset<SetBufferedAmountLowThresholdRequest>,
pub fn finish(
self,
builder: &mut Builder,
) -> Offset<SetBufferedAmountLowThresholdRequest>where
Self: WriteAsOffset<SetBufferedAmountLowThresholdRequest>,
Finish writing the builder to get an Offset to a serialized SetBufferedAmountLowThresholdRequest.
Trait Implementations§
Source§impl<State: Debug> Debug for SetBufferedAmountLowThresholdRequestBuilder<State>
impl<State: Debug> Debug for SetBufferedAmountLowThresholdRequestBuilder<State>
impl<T0: WriteAsDefault<u32, u32>> WriteAs<Offset<SetBufferedAmountLowThresholdRequest>> for SetBufferedAmountLowThresholdRequestBuilder<(T0,)>
impl<T0: WriteAsDefault<u32, u32>> WriteAsOffset<SetBufferedAmountLowThresholdRequest> for SetBufferedAmountLowThresholdRequestBuilder<(T0,)>
impl<T0: WriteAsDefault<u32, u32>> WriteAsOptional<Offset<SetBufferedAmountLowThresholdRequest>> for SetBufferedAmountLowThresholdRequestBuilder<(T0,)>
Auto Trait Implementations§
impl<State> Freeze for SetBufferedAmountLowThresholdRequestBuilder<State>where
State: Freeze,
impl<State> RefUnwindSafe for SetBufferedAmountLowThresholdRequestBuilder<State>where
State: RefUnwindSafe,
impl<State> Send for SetBufferedAmountLowThresholdRequestBuilder<State>where
State: Send,
impl<State> Sync for SetBufferedAmountLowThresholdRequestBuilder<State>where
State: Sync,
impl<State> Unpin for SetBufferedAmountLowThresholdRequestBuilder<State>where
State: Unpin,
impl<State> UnwindSafe for SetBufferedAmountLowThresholdRequestBuilder<State>where
State: UnwindSafe,
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