Struct aws_sdk_mq::types::ActionRequired
source · #[non_exhaustive]pub struct ActionRequired {
pub action_required_code: Option<String>,
pub action_required_info: Option<String>,
}
Expand description
Action required for a broker.
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.action_required_code: Option<String>
The code you can use to find instructions on the action required to resolve your broker issue.
action_required_info: Option<String>
Information about the action required to resolve your broker issue.
Implementations§
source§impl ActionRequired
impl ActionRequired
sourcepub fn action_required_code(&self) -> Option<&str>
pub fn action_required_code(&self) -> Option<&str>
The code you can use to find instructions on the action required to resolve your broker issue.
sourcepub fn action_required_info(&self) -> Option<&str>
pub fn action_required_info(&self) -> Option<&str>
Information about the action required to resolve your broker issue.
source§impl ActionRequired
impl ActionRequired
sourcepub fn builder() -> ActionRequiredBuilder
pub fn builder() -> ActionRequiredBuilder
Creates a new builder-style object to manufacture ActionRequired
.
Trait Implementations§
source§impl Clone for ActionRequired
impl Clone for ActionRequired
source§fn clone(&self) -> ActionRequired
fn clone(&self) -> ActionRequired
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 ActionRequired
impl Debug for ActionRequired
source§impl PartialEq<ActionRequired> for ActionRequired
impl PartialEq<ActionRequired> for ActionRequired
source§fn eq(&self, other: &ActionRequired) -> bool
fn eq(&self, other: &ActionRequired) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ActionRequired
Auto Trait Implementations§
impl RefUnwindSafe for ActionRequired
impl Send for ActionRequired
impl Sync for ActionRequired
impl Unpin for ActionRequired
impl UnwindSafe for ActionRequired
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