Struct aws_sdk_wafv2::types::AndStatement
source · #[non_exhaustive]pub struct AndStatement {
pub statements: Vec<Statement>,
}
Expand description
A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement
within the AndStatement
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.statements: Vec<Statement>
The statements to combine with AND logic. You can use any statements that can be nested.
Implementations§
source§impl AndStatement
impl AndStatement
sourcepub fn statements(&self) -> &[Statement]
pub fn statements(&self) -> &[Statement]
The statements to combine with AND logic. You can use any statements that can be nested.
source§impl AndStatement
impl AndStatement
sourcepub fn builder() -> AndStatementBuilder
pub fn builder() -> AndStatementBuilder
Creates a new builder-style object to manufacture AndStatement
.
Trait Implementations§
source§impl Clone for AndStatement
impl Clone for AndStatement
source§fn clone(&self) -> AndStatement
fn clone(&self) -> AndStatement
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 AndStatement
impl Debug for AndStatement
source§impl PartialEq for AndStatement
impl PartialEq for AndStatement
source§fn eq(&self, other: &AndStatement) -> bool
fn eq(&self, other: &AndStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AndStatement
Auto Trait Implementations§
impl RefUnwindSafe for AndStatement
impl Send for AndStatement
impl Sync for AndStatement
impl Unpin for AndStatement
impl UnwindSafe for AndStatement
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>
Creates a shared type from an unshared type.