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