#[non_exhaustive]pub struct ListRegexPatternSetsOutput {
pub next_marker: Option<String>,
pub regex_pattern_sets: Option<Vec<RegexPatternSetSummary>>,
/* 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.next_marker: Option<String>
If you have more RegexPatternSet
objects than the number that you specified for Limit
in the request, the response includes a NextMarker
value. To list more RegexPatternSet
objects, submit another ListRegexPatternSets
request, and specify the NextMarker
value from the response in the NextMarker
value in the next request.
regex_pattern_sets: Option<Vec<RegexPatternSetSummary>>
An array of RegexPatternSetSummary
objects.
Implementations§
source§impl ListRegexPatternSetsOutput
impl ListRegexPatternSetsOutput
sourcepub fn next_marker(&self) -> Option<&str>
pub fn next_marker(&self) -> Option<&str>
If you have more RegexPatternSet
objects than the number that you specified for Limit
in the request, the response includes a NextMarker
value. To list more RegexPatternSet
objects, submit another ListRegexPatternSets
request, and specify the NextMarker
value from the response in the NextMarker
value in the next request.
sourcepub fn regex_pattern_sets(&self) -> &[RegexPatternSetSummary]
pub fn regex_pattern_sets(&self) -> &[RegexPatternSetSummary]
An array of RegexPatternSetSummary
objects.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .regex_pattern_sets.is_none()
.
source§impl ListRegexPatternSetsOutput
impl ListRegexPatternSetsOutput
sourcepub fn builder() -> ListRegexPatternSetsOutputBuilder
pub fn builder() -> ListRegexPatternSetsOutputBuilder
Creates a new builder-style object to manufacture ListRegexPatternSetsOutput
.
Trait Implementations§
source§impl Clone for ListRegexPatternSetsOutput
impl Clone for ListRegexPatternSetsOutput
source§fn clone(&self) -> ListRegexPatternSetsOutput
fn clone(&self) -> ListRegexPatternSetsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListRegexPatternSetsOutput
impl Debug for ListRegexPatternSetsOutput
source§impl PartialEq for ListRegexPatternSetsOutput
impl PartialEq for ListRegexPatternSetsOutput
source§fn eq(&self, other: &ListRegexPatternSetsOutput) -> bool
fn eq(&self, other: &ListRegexPatternSetsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListRegexPatternSetsOutput
impl RequestId for ListRegexPatternSetsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for ListRegexPatternSetsOutput
Auto Trait Implementations§
impl Freeze for ListRegexPatternSetsOutput
impl RefUnwindSafe for ListRegexPatternSetsOutput
impl Send for ListRegexPatternSetsOutput
impl Sync for ListRegexPatternSetsOutput
impl Unpin for ListRegexPatternSetsOutput
impl UnwindSafe for ListRegexPatternSetsOutput
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