Struct aws_sdk_amp::operation::describe_rule_groups_namespace::DescribeRuleGroupsNamespaceOutput
source · #[non_exhaustive]pub struct DescribeRuleGroupsNamespaceOutput {
pub rule_groups_namespace: Option<RuleGroupsNamespaceDescription>,
/* private fields */
}
Expand description
Represents the output of a DescribeRuleGroupsNamespace operation.
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_groups_namespace: Option<RuleGroupsNamespaceDescription>
The selected rule groups namespace.
Implementations§
source§impl DescribeRuleGroupsNamespaceOutput
impl DescribeRuleGroupsNamespaceOutput
sourcepub fn rule_groups_namespace(&self) -> Option<&RuleGroupsNamespaceDescription>
pub fn rule_groups_namespace(&self) -> Option<&RuleGroupsNamespaceDescription>
The selected rule groups namespace.
source§impl DescribeRuleGroupsNamespaceOutput
impl DescribeRuleGroupsNamespaceOutput
sourcepub fn builder() -> DescribeRuleGroupsNamespaceOutputBuilder
pub fn builder() -> DescribeRuleGroupsNamespaceOutputBuilder
Creates a new builder-style object to manufacture DescribeRuleGroupsNamespaceOutput
.
Trait Implementations§
source§impl Clone for DescribeRuleGroupsNamespaceOutput
impl Clone for DescribeRuleGroupsNamespaceOutput
source§fn clone(&self) -> DescribeRuleGroupsNamespaceOutput
fn clone(&self) -> DescribeRuleGroupsNamespaceOutput
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 PartialEq<DescribeRuleGroupsNamespaceOutput> for DescribeRuleGroupsNamespaceOutput
impl PartialEq<DescribeRuleGroupsNamespaceOutput> for DescribeRuleGroupsNamespaceOutput
source§fn eq(&self, other: &DescribeRuleGroupsNamespaceOutput) -> bool
fn eq(&self, other: &DescribeRuleGroupsNamespaceOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeRuleGroupsNamespaceOutput
impl RequestId for DescribeRuleGroupsNamespaceOutput
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 DescribeRuleGroupsNamespaceOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeRuleGroupsNamespaceOutput
impl Send for DescribeRuleGroupsNamespaceOutput
impl Sync for DescribeRuleGroupsNamespaceOutput
impl Unpin for DescribeRuleGroupsNamespaceOutput
impl UnwindSafe for DescribeRuleGroupsNamespaceOutput
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