Struct aws_sdk_waf::operation::get_rule_group::GetRuleGroupOutput
source · #[non_exhaustive]pub struct GetRuleGroupOutput {
pub rule_group: Option<RuleGroup>,
/* private fields */
}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.rule_group: Option<RuleGroup>Information about the RuleGroup that you specified in the GetRuleGroup request.
Implementations§
source§impl GetRuleGroupOutput
impl GetRuleGroupOutput
sourcepub fn rule_group(&self) -> Option<&RuleGroup>
pub fn rule_group(&self) -> Option<&RuleGroup>
Information about the RuleGroup that you specified in the GetRuleGroup request.
source§impl GetRuleGroupOutput
impl GetRuleGroupOutput
sourcepub fn builder() -> GetRuleGroupOutputBuilder
pub fn builder() -> GetRuleGroupOutputBuilder
Creates a new builder-style object to manufacture GetRuleGroupOutput.
Trait Implementations§
source§impl Clone for GetRuleGroupOutput
impl Clone for GetRuleGroupOutput
source§fn clone(&self) -> GetRuleGroupOutput
fn clone(&self) -> GetRuleGroupOutput
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 GetRuleGroupOutput
impl Debug for GetRuleGroupOutput
source§impl PartialEq<GetRuleGroupOutput> for GetRuleGroupOutput
impl PartialEq<GetRuleGroupOutput> for GetRuleGroupOutput
source§fn eq(&self, other: &GetRuleGroupOutput) -> bool
fn eq(&self, other: &GetRuleGroupOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetRuleGroupOutput
impl RequestId for GetRuleGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetRuleGroupOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRuleGroupOutput
impl Send for GetRuleGroupOutput
impl Sync for GetRuleGroupOutput
impl Unpin for GetRuleGroupOutput
impl UnwindSafe for GetRuleGroupOutput
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