pub struct LintIssue {
pub severity: LintSeverity,
pub code: LintCode,
pub message: String,
pub location: String,
}Expand description
A single lint issue found in the schema.
Fields§
§severity: LintSeverity§code: LintCode§message: String§location: StringThe domain or predicate name 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
Auto Trait Implementations§
impl Freeze for LintIssue
impl RefUnwindSafe for LintIssue
impl Send for LintIssue
impl Sync for LintIssue
impl Unpin for LintIssue
impl UnsafeUnpin 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