Struct aws_sdk_connectcases::types::builders::FieldGroupBuilder
source · #[non_exhaustive]pub struct FieldGroupBuilder { /* private fields */ }Expand description
A builder for FieldGroup.
Implementations§
source§impl FieldGroupBuilder
impl FieldGroupBuilder
sourcepub fn fields(self, input: FieldItem) -> Self
pub fn fields(self, input: FieldItem) -> Self
Appends an item to fields.
To override the contents of this collection use set_fields.
Represents an ordered list containing field related information.
sourcepub fn set_fields(self, input: Option<Vec<FieldItem>>) -> Self
pub fn set_fields(self, input: Option<Vec<FieldItem>>) -> Self
Represents an ordered list containing field related information.
sourcepub fn get_fields(&self) -> &Option<Vec<FieldItem>>
pub fn get_fields(&self) -> &Option<Vec<FieldItem>>
Represents an ordered list containing field related information.
sourcepub fn build(self) -> Result<FieldGroup, BuildError>
pub fn build(self) -> Result<FieldGroup, BuildError>
Consumes the builder and constructs a FieldGroup.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for FieldGroupBuilder
impl Clone for FieldGroupBuilder
source§fn clone(&self) -> FieldGroupBuilder
fn clone(&self) -> FieldGroupBuilder
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 FieldGroupBuilder
impl Debug for FieldGroupBuilder
source§impl Default for FieldGroupBuilder
impl Default for FieldGroupBuilder
source§fn default() -> FieldGroupBuilder
fn default() -> FieldGroupBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for FieldGroupBuilder
impl PartialEq for FieldGroupBuilder
source§fn eq(&self, other: &FieldGroupBuilder) -> bool
fn eq(&self, other: &FieldGroupBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FieldGroupBuilder
Auto Trait Implementations§
impl Freeze for FieldGroupBuilder
impl RefUnwindSafe for FieldGroupBuilder
impl Send for FieldGroupBuilder
impl Sync for FieldGroupBuilder
impl Unpin for FieldGroupBuilder
impl UnwindSafe for FieldGroupBuilder
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> 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.