#[non_exhaustive]pub struct GetByteMatchSetOutput {
pub byte_match_set: Option<ByteMatchSet>,
/* 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.byte_match_set: Option<ByteMatchSet>
Information about the ByteMatchSet
that you specified in the GetByteMatchSet
request. For more information, see the following topics:
-
ByteMatchSet
: ContainsByteMatchSetId
,ByteMatchTuples
, andName
-
ByteMatchTuples
: Contains an array ofByteMatchTuple
objects. EachByteMatchTuple
object containsFieldToMatch
,PositionalConstraint
,TargetString
, andTextTransformation
-
FieldToMatch
: ContainsData
andType
Implementations§
source§impl GetByteMatchSetOutput
impl GetByteMatchSetOutput
sourcepub fn byte_match_set(&self) -> Option<&ByteMatchSet>
pub fn byte_match_set(&self) -> Option<&ByteMatchSet>
Information about the ByteMatchSet
that you specified in the GetByteMatchSet
request. For more information, see the following topics:
-
ByteMatchSet
: ContainsByteMatchSetId
,ByteMatchTuples
, andName
-
ByteMatchTuples
: Contains an array ofByteMatchTuple
objects. EachByteMatchTuple
object containsFieldToMatch
,PositionalConstraint
,TargetString
, andTextTransformation
-
FieldToMatch
: ContainsData
andType
source§impl GetByteMatchSetOutput
impl GetByteMatchSetOutput
sourcepub fn builder() -> GetByteMatchSetOutputBuilder
pub fn builder() -> GetByteMatchSetOutputBuilder
Creates a new builder-style object to manufacture GetByteMatchSetOutput
.
Trait Implementations§
source§impl Clone for GetByteMatchSetOutput
impl Clone for GetByteMatchSetOutput
source§fn clone(&self) -> GetByteMatchSetOutput
fn clone(&self) -> GetByteMatchSetOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetByteMatchSetOutput
impl Debug for GetByteMatchSetOutput
source§impl PartialEq for GetByteMatchSetOutput
impl PartialEq for GetByteMatchSetOutput
source§fn eq(&self, other: &GetByteMatchSetOutput) -> bool
fn eq(&self, other: &GetByteMatchSetOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetByteMatchSetOutput
impl RequestId for GetByteMatchSetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetByteMatchSetOutput
Auto Trait Implementations§
impl Freeze for GetByteMatchSetOutput
impl RefUnwindSafe for GetByteMatchSetOutput
impl Send for GetByteMatchSetOutput
impl Sync for GetByteMatchSetOutput
impl Unpin for GetByteMatchSetOutput
impl UnwindSafe for GetByteMatchSetOutput
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