#[non_exhaustive]pub struct GetMatchIdOutputBuilder { /* private fields */ }
Expand description
A builder for GetMatchIdOutput
.
Implementations§
source§impl GetMatchIdOutputBuilder
impl GetMatchIdOutputBuilder
sourcepub fn match_id(self, input: impl Into<String>) -> Self
pub fn match_id(self, input: impl Into<String>) -> Self
The unique identifiers for this group of match records.
sourcepub fn set_match_id(self, input: Option<String>) -> Self
pub fn set_match_id(self, input: Option<String>) -> Self
The unique identifiers for this group of match records.
sourcepub fn get_match_id(&self) -> &Option<String>
pub fn get_match_id(&self) -> &Option<String>
The unique identifiers for this group of match records.
sourcepub fn match_rule(self, input: impl Into<String>) -> Self
pub fn match_rule(self, input: impl Into<String>) -> Self
The rule the record matched on.
sourcepub fn set_match_rule(self, input: Option<String>) -> Self
pub fn set_match_rule(self, input: Option<String>) -> Self
The rule the record matched on.
sourcepub fn get_match_rule(&self) -> &Option<String>
pub fn get_match_rule(&self) -> &Option<String>
The rule the record matched on.
sourcepub fn build(self) -> GetMatchIdOutput
pub fn build(self) -> GetMatchIdOutput
Consumes the builder and constructs a GetMatchIdOutput
.
Trait Implementations§
source§impl Clone for GetMatchIdOutputBuilder
impl Clone for GetMatchIdOutputBuilder
source§fn clone(&self) -> GetMatchIdOutputBuilder
fn clone(&self) -> GetMatchIdOutputBuilder
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 GetMatchIdOutputBuilder
impl Debug for GetMatchIdOutputBuilder
source§impl Default for GetMatchIdOutputBuilder
impl Default for GetMatchIdOutputBuilder
source§fn default() -> GetMatchIdOutputBuilder
fn default() -> GetMatchIdOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetMatchIdOutputBuilder
impl PartialEq for GetMatchIdOutputBuilder
source§fn eq(&self, other: &GetMatchIdOutputBuilder) -> bool
fn eq(&self, other: &GetMatchIdOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMatchIdOutputBuilder
Auto Trait Implementations§
impl Freeze for GetMatchIdOutputBuilder
impl RefUnwindSafe for GetMatchIdOutputBuilder
impl Send for GetMatchIdOutputBuilder
impl Sync for GetMatchIdOutputBuilder
impl Unpin for GetMatchIdOutputBuilder
impl UnwindSafe for GetMatchIdOutputBuilder
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.