pub struct RuleReport {
pub rule: String,
pub verdict: Verdict,
pub detail: String,
}Expand description
One rule’s verdict on one segment.
Fields§
§rule: StringC1…C4.
verdict: Verdict§detail: StringWhat was checked, or what broke, or why the check degraded.
Trait Implementations§
Source§impl Clone for RuleReport
impl Clone for RuleReport
Source§fn clone(&self) -> RuleReport
fn clone(&self) -> RuleReport
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 RuleReport
impl Debug for RuleReport
impl Eq for RuleReport
Source§impl PartialEq for RuleReport
impl PartialEq for RuleReport
Source§impl Serialize for RuleReport
impl Serialize for RuleReport
impl StructuralPartialEq for RuleReport
Auto Trait Implementations§
impl Freeze for RuleReport
impl RefUnwindSafe for RuleReport
impl Send for RuleReport
impl Sync for RuleReport
impl Unpin for RuleReport
impl UnsafeUnpin for RuleReport
impl UnwindSafe for RuleReport
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