#[non_exhaustive]pub struct GetRegexMatchSetOutputBuilder { /* private fields */ }
Expand description
A builder for GetRegexMatchSetOutput
.
Implementations§
source§impl GetRegexMatchSetOutputBuilder
impl GetRegexMatchSetOutputBuilder
sourcepub fn regex_match_set(self, input: RegexMatchSet) -> Self
pub fn regex_match_set(self, input: RegexMatchSet) -> Self
Information about the RegexMatchSet
that you specified in the GetRegexMatchSet
request. For more information, see RegexMatchTuple
.
sourcepub fn set_regex_match_set(self, input: Option<RegexMatchSet>) -> Self
pub fn set_regex_match_set(self, input: Option<RegexMatchSet>) -> Self
Information about the RegexMatchSet
that you specified in the GetRegexMatchSet
request. For more information, see RegexMatchTuple
.
sourcepub fn get_regex_match_set(&self) -> &Option<RegexMatchSet>
pub fn get_regex_match_set(&self) -> &Option<RegexMatchSet>
Information about the RegexMatchSet
that you specified in the GetRegexMatchSet
request. For more information, see RegexMatchTuple
.
sourcepub fn build(self) -> GetRegexMatchSetOutput
pub fn build(self) -> GetRegexMatchSetOutput
Consumes the builder and constructs a GetRegexMatchSetOutput
.
Trait Implementations§
source§impl Clone for GetRegexMatchSetOutputBuilder
impl Clone for GetRegexMatchSetOutputBuilder
source§fn clone(&self) -> GetRegexMatchSetOutputBuilder
fn clone(&self) -> GetRegexMatchSetOutputBuilder
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 GetRegexMatchSetOutputBuilder
impl Default for GetRegexMatchSetOutputBuilder
source§fn default() -> GetRegexMatchSetOutputBuilder
fn default() -> GetRegexMatchSetOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetRegexMatchSetOutputBuilder
impl PartialEq for GetRegexMatchSetOutputBuilder
source§fn eq(&self, other: &GetRegexMatchSetOutputBuilder) -> bool
fn eq(&self, other: &GetRegexMatchSetOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetRegexMatchSetOutputBuilder
Auto Trait Implementations§
impl Freeze for GetRegexMatchSetOutputBuilder
impl RefUnwindSafe for GetRegexMatchSetOutputBuilder
impl Send for GetRegexMatchSetOutputBuilder
impl Sync for GetRegexMatchSetOutputBuilder
impl Unpin for GetRegexMatchSetOutputBuilder
impl UnwindSafe for GetRegexMatchSetOutputBuilder
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.