pub struct TrustedAdvisorCheckDescription {
pub category: String,
pub description: String,
pub id: String,
pub metadata: Vec<String>,
pub name: String,
}
Expand description
The description and metadata for a Trusted Advisor check.
Fields§
§category: String
The category of the Trusted Advisor check.
description: String
The description of the Trusted Advisor check, which includes the alert criteria and recommended operations (contains HTML markup).
id: String
The unique identifier for the Trusted Advisor check.
metadata: Vec<String>
The column headings for the data returned by the Trusted Advisor check. The order of the headings corresponds to the order of the data in the Metadata element of the TrustedAdvisorResourceDetail for the check. Metadata contains all the data that is shown in the Excel download, even in those cases where the UI shows just summary data.
name: String
The display name for the Trusted Advisor check.
Trait Implementations§
Source§impl Clone for TrustedAdvisorCheckDescription
impl Clone for TrustedAdvisorCheckDescription
Source§fn clone(&self) -> TrustedAdvisorCheckDescription
fn clone(&self) -> TrustedAdvisorCheckDescription
Returns a duplicate 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 Default for TrustedAdvisorCheckDescription
impl Default for TrustedAdvisorCheckDescription
Source§fn default() -> TrustedAdvisorCheckDescription
fn default() -> TrustedAdvisorCheckDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrustedAdvisorCheckDescription
impl<'de> Deserialize<'de> for TrustedAdvisorCheckDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TrustedAdvisorCheckDescription
impl PartialEq for TrustedAdvisorCheckDescription
Source§fn eq(&self, other: &TrustedAdvisorCheckDescription) -> bool
fn eq(&self, other: &TrustedAdvisorCheckDescription) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TrustedAdvisorCheckDescription
Auto Trait Implementations§
impl Freeze for TrustedAdvisorCheckDescription
impl RefUnwindSafe for TrustedAdvisorCheckDescription
impl Send for TrustedAdvisorCheckDescription
impl Sync for TrustedAdvisorCheckDescription
impl Unpin for TrustedAdvisorCheckDescription
impl UnwindSafe for TrustedAdvisorCheckDescription
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