#[non_exhaustive]pub struct StatelessRulesAndCustomActions {
pub stateless_rules: Option<Vec<StatelessRule>>,
pub custom_actions: Option<Vec<CustomAction>>,
}
Expand description
Stateless inspection criteria. Each stateless rule group uses exactly one of these data types to define its stateless rules.
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.stateless_rules: Option<Vec<StatelessRule>>
Defines the set of stateless rules for use in a stateless rule group.
custom_actions: Option<Vec<CustomAction>>
Defines an array of individual custom action definitions that are available for use by the stateless rules in this StatelessRulesAndCustomActions
specification. You name each custom action that you define, and then you can use it by name in your StatelessRule
RuleDefinition
Actions
specification.
Implementations
sourceimpl StatelessRulesAndCustomActions
impl StatelessRulesAndCustomActions
sourcepub fn stateless_rules(&self) -> Option<&[StatelessRule]>
pub fn stateless_rules(&self) -> Option<&[StatelessRule]>
Defines the set of stateless rules for use in a stateless rule group.
sourcepub fn custom_actions(&self) -> Option<&[CustomAction]>
pub fn custom_actions(&self) -> Option<&[CustomAction]>
Defines an array of individual custom action definitions that are available for use by the stateless rules in this StatelessRulesAndCustomActions
specification. You name each custom action that you define, and then you can use it by name in your StatelessRule
RuleDefinition
Actions
specification.
sourceimpl StatelessRulesAndCustomActions
impl StatelessRulesAndCustomActions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StatelessRulesAndCustomActions
Trait Implementations
sourceimpl Clone for StatelessRulesAndCustomActions
impl Clone for StatelessRulesAndCustomActions
sourcefn clone(&self) -> StatelessRulesAndCustomActions
fn clone(&self) -> StatelessRulesAndCustomActions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<StatelessRulesAndCustomActions> for StatelessRulesAndCustomActions
impl PartialEq<StatelessRulesAndCustomActions> for StatelessRulesAndCustomActions
sourcefn eq(&self, other: &StatelessRulesAndCustomActions) -> bool
fn eq(&self, other: &StatelessRulesAndCustomActions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &StatelessRulesAndCustomActions) -> bool
fn ne(&self, other: &StatelessRulesAndCustomActions) -> bool
This method tests for !=
.
impl StructuralPartialEq for StatelessRulesAndCustomActions
Auto Trait Implementations
impl RefUnwindSafe for StatelessRulesAndCustomActions
impl Send for StatelessRulesAndCustomActions
impl Sync for StatelessRulesAndCustomActions
impl Unpin for StatelessRulesAndCustomActions
impl UnwindSafe for StatelessRulesAndCustomActions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more