pub struct ResourceCheckIssue {
pub check_issue: Option<CheckIssue>,
pub resource: Option<Resource>,
}Expand description
A check configuration issue (error, warning) associated with a resource.
Fields§
§check_issue: Option<CheckIssue>An issue (error, warning) associated with a check configuration.
resource: Option<Resource>Implementations§
Trait Implementations§
source§impl Clone for ResourceCheckIssue
impl Clone for ResourceCheckIssue
source§fn clone(&self) -> ResourceCheckIssue
fn clone(&self) -> ResourceCheckIssue
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 ResourceCheckIssue
impl Debug for ResourceCheckIssue
source§impl Default for ResourceCheckIssue
impl Default for ResourceCheckIssue
source§fn default() -> ResourceCheckIssue
fn default() -> ResourceCheckIssue
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ResourceCheckIssue
impl<'de> Deserialize<'de> for ResourceCheckIssue
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 ResourceCheckIssue
impl PartialEq for ResourceCheckIssue
source§fn eq(&self, other: &ResourceCheckIssue) -> bool
fn eq(&self, other: &ResourceCheckIssue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ResourceCheckIssue
impl Serialize for ResourceCheckIssue
impl StructuralPartialEq for ResourceCheckIssue
Auto Trait Implementations§
impl Freeze for ResourceCheckIssue
impl RefUnwindSafe for ResourceCheckIssue
impl Send for ResourceCheckIssue
impl Sync for ResourceCheckIssue
impl Unpin for ResourceCheckIssue
impl UnwindSafe for ResourceCheckIssue
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