#[non_exhaustive]pub struct SlotDefaultValueSpecificationBuilder { /* private fields */ }Expand description
A builder for SlotDefaultValueSpecification.
Implementations§
source§impl SlotDefaultValueSpecificationBuilder
impl SlotDefaultValueSpecificationBuilder
sourcepub fn default_value_list(self, input: SlotDefaultValue) -> Self
pub fn default_value_list(self, input: SlotDefaultValue) -> Self
Appends an item to default_value_list.
To override the contents of this collection use set_default_value_list.
A list of default values. Amazon Lex chooses the default value to use in the order that they are presented in the list.
sourcepub fn set_default_value_list(
self,
input: Option<Vec<SlotDefaultValue>>,
) -> Self
pub fn set_default_value_list( self, input: Option<Vec<SlotDefaultValue>>, ) -> Self
A list of default values. Amazon Lex chooses the default value to use in the order that they are presented in the list.
sourcepub fn get_default_value_list(&self) -> &Option<Vec<SlotDefaultValue>>
pub fn get_default_value_list(&self) -> &Option<Vec<SlotDefaultValue>>
A list of default values. Amazon Lex chooses the default value to use in the order that they are presented in the list.
sourcepub fn build(self) -> Result<SlotDefaultValueSpecification, BuildError>
pub fn build(self) -> Result<SlotDefaultValueSpecification, BuildError>
Consumes the builder and constructs a SlotDefaultValueSpecification.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for SlotDefaultValueSpecificationBuilder
impl Clone for SlotDefaultValueSpecificationBuilder
source§fn clone(&self) -> SlotDefaultValueSpecificationBuilder
fn clone(&self) -> SlotDefaultValueSpecificationBuilder
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 Default for SlotDefaultValueSpecificationBuilder
impl Default for SlotDefaultValueSpecificationBuilder
source§fn default() -> SlotDefaultValueSpecificationBuilder
fn default() -> SlotDefaultValueSpecificationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SlotDefaultValueSpecificationBuilder
impl PartialEq for SlotDefaultValueSpecificationBuilder
source§fn eq(&self, other: &SlotDefaultValueSpecificationBuilder) -> bool
fn eq(&self, other: &SlotDefaultValueSpecificationBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SlotDefaultValueSpecificationBuilder
Auto Trait Implementations§
impl Freeze for SlotDefaultValueSpecificationBuilder
impl RefUnwindSafe for SlotDefaultValueSpecificationBuilder
impl Send for SlotDefaultValueSpecificationBuilder
impl Sync for SlotDefaultValueSpecificationBuilder
impl Unpin for SlotDefaultValueSpecificationBuilder
impl UnwindSafe for SlotDefaultValueSpecificationBuilder
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.