Struct aws_sdk_rds::types::IssueDetails
source · #[non_exhaustive]pub struct IssueDetails {
pub performance_issue_details: Option<PerformanceIssueDetails>,
}Expand description
The details of an issue with your DB instances, DB clusters, and DB parameter groups.
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.performance_issue_details: Option<PerformanceIssueDetails>A detailed description of the issue when the recommendation category is performance.
Implementations§
source§impl IssueDetails
impl IssueDetails
sourcepub fn performance_issue_details(&self) -> Option<&PerformanceIssueDetails>
pub fn performance_issue_details(&self) -> Option<&PerformanceIssueDetails>
A detailed description of the issue when the recommendation category is performance.
source§impl IssueDetails
impl IssueDetails
sourcepub fn builder() -> IssueDetailsBuilder
pub fn builder() -> IssueDetailsBuilder
Creates a new builder-style object to manufacture IssueDetails.
Trait Implementations§
source§impl Clone for IssueDetails
impl Clone for IssueDetails
source§fn clone(&self) -> IssueDetails
fn clone(&self) -> IssueDetails
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 IssueDetails
impl Debug for IssueDetails
source§impl PartialEq for IssueDetails
impl PartialEq for IssueDetails
source§fn eq(&self, other: &IssueDetails) -> bool
fn eq(&self, other: &IssueDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IssueDetails
Auto Trait Implementations§
impl RefUnwindSafe for IssueDetails
impl Send for IssueDetails
impl Sync for IssueDetails
impl Unpin for IssueDetails
impl UnwindSafe for IssueDetails
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.