pub struct LintCheckResultInput {
pub check_id: String,
pub outcome: LintOutcome,
pub severity: LintSeverity,
pub applicability: LintApplicability,
pub precondition: LintPrecondition,
pub coverage: LintCoverage,
pub metrics: Vec<LintMetric>,
pub summary_code: LintSummaryCode,
pub recommendation_code: Option<LintRecommendationCode>,
pub evidence: Vec<LintEvidenceRef>,
pub duration_ms: u64,
}Fields§
§check_id: String§outcome: LintOutcome§severity: LintSeverity§applicability: LintApplicability§precondition: LintPrecondition§coverage: LintCoverage§metrics: Vec<LintMetric>§summary_code: LintSummaryCode§recommendation_code: Option<LintRecommendationCode>§evidence: Vec<LintEvidenceRef>§duration_ms: u64Trait Implementations§
Source§impl Clone for LintCheckResultInput
impl Clone for LintCheckResultInput
Source§fn clone(&self) -> LintCheckResultInput
fn clone(&self) -> LintCheckResultInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LintCheckResultInput
impl Debug for LintCheckResultInput
Source§impl<'de> Deserialize<'de> for LintCheckResultInput
impl<'de> Deserialize<'de> for LintCheckResultInput
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 Eq for LintCheckResultInput
Source§impl PartialEq for LintCheckResultInput
impl PartialEq for LintCheckResultInput
impl StructuralPartialEq for LintCheckResultInput
Auto Trait Implementations§
impl Freeze for LintCheckResultInput
impl RefUnwindSafe for LintCheckResultInput
impl Send for LintCheckResultInput
impl Sync for LintCheckResultInput
impl Unpin for LintCheckResultInput
impl UnsafeUnpin for LintCheckResultInput
impl UnwindSafe for LintCheckResultInput
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