pub struct NonCompliantResource {
pub additional_info: Option<HashMap<String, String>>,
pub resource_identifier: Option<ResourceIdentifier>,
pub resource_type: Option<String>,
}Expand description
Information about the resource that was noncompliant with the audit check.
Fields§
§additional_info: Option<HashMap<String, String>>Other information about the noncompliant resource.
resource_identifier: Option<ResourceIdentifier>Information that identifies the noncompliant resource.
resource_type: Option<String>The type of the noncompliant resource.
Trait Implementations§
Source§impl Clone for NonCompliantResource
impl Clone for NonCompliantResource
Source§fn clone(&self) -> NonCompliantResource
fn clone(&self) -> NonCompliantResource
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 Debug for NonCompliantResource
impl Debug for NonCompliantResource
Source§impl Default for NonCompliantResource
impl Default for NonCompliantResource
Source§fn default() -> NonCompliantResource
fn default() -> NonCompliantResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NonCompliantResource
impl<'de> Deserialize<'de> for NonCompliantResource
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 NonCompliantResource
impl PartialEq for NonCompliantResource
impl StructuralPartialEq for NonCompliantResource
Auto Trait Implementations§
impl Freeze for NonCompliantResource
impl RefUnwindSafe for NonCompliantResource
impl Send for NonCompliantResource
impl Sync for NonCompliantResource
impl Unpin for NonCompliantResource
impl UnwindSafe for NonCompliantResource
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