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