Struct aws_sdk_connect::operation::search_predefined_attributes::SearchPredefinedAttributesOutput
source · #[non_exhaustive]pub struct SearchPredefinedAttributesOutput {
pub predefined_attributes: Option<Vec<PredefinedAttribute>>,
pub next_token: Option<String>,
pub approximate_total_count: Option<i64>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.predefined_attributes: Option<Vec<PredefinedAttribute>>
Predefined attributes matched by the search criteria.
next_token: Option<String>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
approximate_total_count: Option<i64>
The approximate number of predefined attributes which matched your search query.
Implementations§
source§impl SearchPredefinedAttributesOutput
impl SearchPredefinedAttributesOutput
sourcepub fn predefined_attributes(&self) -> &[PredefinedAttribute]
pub fn predefined_attributes(&self) -> &[PredefinedAttribute]
Predefined attributes matched by the search criteria.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .predefined_attributes.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn approximate_total_count(&self) -> Option<i64>
pub fn approximate_total_count(&self) -> Option<i64>
The approximate number of predefined attributes which matched your search query.
source§impl SearchPredefinedAttributesOutput
impl SearchPredefinedAttributesOutput
sourcepub fn builder() -> SearchPredefinedAttributesOutputBuilder
pub fn builder() -> SearchPredefinedAttributesOutputBuilder
Creates a new builder-style object to manufacture SearchPredefinedAttributesOutput
.
Trait Implementations§
source§impl Clone for SearchPredefinedAttributesOutput
impl Clone for SearchPredefinedAttributesOutput
source§fn clone(&self) -> SearchPredefinedAttributesOutput
fn clone(&self) -> SearchPredefinedAttributesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for SearchPredefinedAttributesOutput
impl PartialEq for SearchPredefinedAttributesOutput
source§fn eq(&self, other: &SearchPredefinedAttributesOutput) -> bool
fn eq(&self, other: &SearchPredefinedAttributesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for SearchPredefinedAttributesOutput
impl RequestId for SearchPredefinedAttributesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for SearchPredefinedAttributesOutput
Auto Trait Implementations§
impl Freeze for SearchPredefinedAttributesOutput
impl RefUnwindSafe for SearchPredefinedAttributesOutput
impl Send for SearchPredefinedAttributesOutput
impl Sync for SearchPredefinedAttributesOutput
impl Unpin for SearchPredefinedAttributesOutput
impl UnwindSafe for SearchPredefinedAttributesOutput
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
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>
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>
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 more