Struct aws_sdk_sagemaker::types::builders::UsdBuilder
source · #[non_exhaustive]pub struct UsdBuilder { /* private fields */ }
Expand description
A builder for Usd
.
Implementations§
source§impl UsdBuilder
impl UsdBuilder
sourcepub fn set_dollars(self, input: Option<i32>) -> Self
pub fn set_dollars(self, input: Option<i32>) -> Self
The whole number of dollars in the amount.
sourcepub fn get_dollars(&self) -> &Option<i32>
pub fn get_dollars(&self) -> &Option<i32>
The whole number of dollars in the amount.
sourcepub fn set_cents(self, input: Option<i32>) -> Self
pub fn set_cents(self, input: Option<i32>) -> Self
The fractional portion, in cents, of the amount.
sourcepub fn tenth_fractions_of_a_cent(self, input: i32) -> Self
pub fn tenth_fractions_of_a_cent(self, input: i32) -> Self
Fractions of a cent, in tenths.
sourcepub fn set_tenth_fractions_of_a_cent(self, input: Option<i32>) -> Self
pub fn set_tenth_fractions_of_a_cent(self, input: Option<i32>) -> Self
Fractions of a cent, in tenths.
sourcepub fn get_tenth_fractions_of_a_cent(&self) -> &Option<i32>
pub fn get_tenth_fractions_of_a_cent(&self) -> &Option<i32>
Fractions of a cent, in tenths.
Trait Implementations§
source§impl Clone for UsdBuilder
impl Clone for UsdBuilder
source§fn clone(&self) -> UsdBuilder
fn clone(&self) -> UsdBuilder
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 UsdBuilder
impl Debug for UsdBuilder
source§impl Default for UsdBuilder
impl Default for UsdBuilder
source§fn default() -> UsdBuilder
fn default() -> UsdBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UsdBuilder
impl PartialEq for UsdBuilder
source§fn eq(&self, other: &UsdBuilder) -> bool
fn eq(&self, other: &UsdBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UsdBuilder
Auto Trait Implementations§
impl Freeze for UsdBuilder
impl RefUnwindSafe for UsdBuilder
impl Send for UsdBuilder
impl Sync for UsdBuilder
impl Unpin for UsdBuilder
impl UnwindSafe for UsdBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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.