Struct aws_sdk_xray::operation::get_groups::builders::GetGroupsOutputBuilder
source · #[non_exhaustive]pub struct GetGroupsOutputBuilder { /* private fields */ }
Expand description
A builder for GetGroupsOutput
.
Implementations§
source§impl GetGroupsOutputBuilder
impl GetGroupsOutputBuilder
sourcepub fn groups(self, input: GroupSummary) -> Self
pub fn groups(self, input: GroupSummary) -> Self
Appends an item to groups
.
To override the contents of this collection use set_groups
.
The collection of all active groups.
sourcepub fn set_groups(self, input: Option<Vec<GroupSummary>>) -> Self
pub fn set_groups(self, input: Option<Vec<GroupSummary>>) -> Self
The collection of all active groups.
sourcepub fn get_groups(&self) -> &Option<Vec<GroupSummary>>
pub fn get_groups(&self) -> &Option<Vec<GroupSummary>>
The collection of all active groups.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Pagination token.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Pagination token.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Pagination token.
sourcepub fn build(self) -> GetGroupsOutput
pub fn build(self) -> GetGroupsOutput
Consumes the builder and constructs a GetGroupsOutput
.
Trait Implementations§
source§impl Clone for GetGroupsOutputBuilder
impl Clone for GetGroupsOutputBuilder
source§fn clone(&self) -> GetGroupsOutputBuilder
fn clone(&self) -> GetGroupsOutputBuilder
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 GetGroupsOutputBuilder
impl Debug for GetGroupsOutputBuilder
source§impl Default for GetGroupsOutputBuilder
impl Default for GetGroupsOutputBuilder
source§fn default() -> GetGroupsOutputBuilder
fn default() -> GetGroupsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetGroupsOutputBuilder
impl PartialEq for GetGroupsOutputBuilder
impl StructuralPartialEq for GetGroupsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetGroupsOutputBuilder
impl RefUnwindSafe for GetGroupsOutputBuilder
impl Send for GetGroupsOutputBuilder
impl Sync for GetGroupsOutputBuilder
impl Unpin for GetGroupsOutputBuilder
impl UnwindSafe for GetGroupsOutputBuilder
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.