#[non_exhaustive]pub struct GetSqlInjectionMatchSetOutput {
pub sql_injection_match_set: Option<SqlInjectionMatchSet>,
/* private fields */
}
Expand description
The response to a GetSqlInjectionMatchSet
request.
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.sql_injection_match_set: Option<SqlInjectionMatchSet>
Information about the SqlInjectionMatchSet
that you specified in the GetSqlInjectionMatchSet
request. For more information, see the following topics:
-
SqlInjectionMatchSet
: ContainsName
,SqlInjectionMatchSetId
, and an array ofSqlInjectionMatchTuple
objects -
SqlInjectionMatchTuple
: EachSqlInjectionMatchTuple
object containsFieldToMatch
andTextTransformation
-
FieldToMatch
: ContainsData
andType
Implementations§
source§impl GetSqlInjectionMatchSetOutput
impl GetSqlInjectionMatchSetOutput
sourcepub fn sql_injection_match_set(&self) -> Option<&SqlInjectionMatchSet>
pub fn sql_injection_match_set(&self) -> Option<&SqlInjectionMatchSet>
Information about the SqlInjectionMatchSet
that you specified in the GetSqlInjectionMatchSet
request. For more information, see the following topics:
-
SqlInjectionMatchSet
: ContainsName
,SqlInjectionMatchSetId
, and an array ofSqlInjectionMatchTuple
objects -
SqlInjectionMatchTuple
: EachSqlInjectionMatchTuple
object containsFieldToMatch
andTextTransformation
-
FieldToMatch
: ContainsData
andType
source§impl GetSqlInjectionMatchSetOutput
impl GetSqlInjectionMatchSetOutput
sourcepub fn builder() -> GetSqlInjectionMatchSetOutputBuilder
pub fn builder() -> GetSqlInjectionMatchSetOutputBuilder
Creates a new builder-style object to manufacture GetSqlInjectionMatchSetOutput
.
Trait Implementations§
source§impl Clone for GetSqlInjectionMatchSetOutput
impl Clone for GetSqlInjectionMatchSetOutput
source§fn clone(&self) -> GetSqlInjectionMatchSetOutput
fn clone(&self) -> GetSqlInjectionMatchSetOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetSqlInjectionMatchSetOutput
impl PartialEq for GetSqlInjectionMatchSetOutput
source§fn eq(&self, other: &GetSqlInjectionMatchSetOutput) -> bool
fn eq(&self, other: &GetSqlInjectionMatchSetOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSqlInjectionMatchSetOutput
impl RequestId for GetSqlInjectionMatchSetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetSqlInjectionMatchSetOutput
Auto Trait Implementations§
impl Freeze for GetSqlInjectionMatchSetOutput
impl RefUnwindSafe for GetSqlInjectionMatchSetOutput
impl Send for GetSqlInjectionMatchSetOutput
impl Sync for GetSqlInjectionMatchSetOutput
impl Unpin for GetSqlInjectionMatchSetOutput
impl UnwindSafe for GetSqlInjectionMatchSetOutput
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