Struct aws_sdk_devicefarm::types::builders::RecurringChargeBuilder
source · #[non_exhaustive]pub struct RecurringChargeBuilder { /* private fields */ }Expand description
A builder for RecurringCharge.
Implementations§
source§impl RecurringChargeBuilder
impl RecurringChargeBuilder
sourcepub fn cost(self, input: MonetaryAmount) -> Self
pub fn cost(self, input: MonetaryAmount) -> Self
The cost of the recurring charge.
sourcepub fn set_cost(self, input: Option<MonetaryAmount>) -> Self
pub fn set_cost(self, input: Option<MonetaryAmount>) -> Self
The cost of the recurring charge.
sourcepub fn get_cost(&self) -> &Option<MonetaryAmount>
pub fn get_cost(&self) -> &Option<MonetaryAmount>
The cost of the recurring charge.
sourcepub fn frequency(self, input: RecurringChargeFrequency) -> Self
pub fn frequency(self, input: RecurringChargeFrequency) -> Self
The frequency in which charges recur.
sourcepub fn set_frequency(self, input: Option<RecurringChargeFrequency>) -> Self
pub fn set_frequency(self, input: Option<RecurringChargeFrequency>) -> Self
The frequency in which charges recur.
sourcepub fn get_frequency(&self) -> &Option<RecurringChargeFrequency>
pub fn get_frequency(&self) -> &Option<RecurringChargeFrequency>
The frequency in which charges recur.
sourcepub fn build(self) -> RecurringCharge
pub fn build(self) -> RecurringCharge
Consumes the builder and constructs a RecurringCharge.
Trait Implementations§
source§impl Clone for RecurringChargeBuilder
impl Clone for RecurringChargeBuilder
source§fn clone(&self) -> RecurringChargeBuilder
fn clone(&self) -> RecurringChargeBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for RecurringChargeBuilder
impl Debug for RecurringChargeBuilder
source§impl Default for RecurringChargeBuilder
impl Default for RecurringChargeBuilder
source§fn default() -> RecurringChargeBuilder
fn default() -> RecurringChargeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RecurringChargeBuilder
impl PartialEq for RecurringChargeBuilder
impl StructuralPartialEq for RecurringChargeBuilder
Auto Trait Implementations§
impl Freeze for RecurringChargeBuilder
impl RefUnwindSafe for RecurringChargeBuilder
impl Send for RecurringChargeBuilder
impl Sync for RecurringChargeBuilder
impl Unpin for RecurringChargeBuilder
impl UnwindSafe for RecurringChargeBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.