pub struct LintIssue {
pub issue_type: LintIssueType,
pub message: String,
pub artifact_id: ArtifactId,
}Expand description
A lint issue found during artifact linting.
Fields§
§issue_type: LintIssueTypeType of lint issue
message: StringHuman-readable message
artifact_id: ArtifactIdArtifact ID this issue relates to
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LintIssue
impl<'de> Deserialize<'de> for LintIssue
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
impl StructuralPartialEq for LintIssue
Auto Trait Implementations§
impl Freeze for LintIssue
impl RefUnwindSafe for LintIssue
impl Send for LintIssue
impl Sync for LintIssue
impl Unpin for LintIssue
impl UnwindSafe for LintIssue
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