pub struct RulePackStatusResult {
pub pack_id: String,
pub findings_by_uri: HashMap<String, Vec<String>>,
pub conformance: ConformanceVector,
}Expand description
Per-pack status returned by max/rulePackStatus.
Fields§
§pack_id: StringPack identifier.
findings_by_uri: HashMap<String, Vec<String>>Rules that fired, grouped by file URI.
conformance: ConformanceVectorThe ConformanceVector contribution from this pack alone.
Trait Implementations§
Source§impl Clone for RulePackStatusResult
impl Clone for RulePackStatusResult
Source§fn clone(&self) -> RulePackStatusResult
fn clone(&self) -> RulePackStatusResult
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 RulePackStatusResult
impl Debug for RulePackStatusResult
Source§impl<'de> Deserialize<'de> for RulePackStatusResult
impl<'de> Deserialize<'de> for RulePackStatusResult
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 RulePackStatusResult
impl RefUnwindSafe for RulePackStatusResult
impl Send for RulePackStatusResult
impl Sync for RulePackStatusResult
impl Unpin for RulePackStatusResult
impl UnsafeUnpin for RulePackStatusResult
impl UnwindSafe for RulePackStatusResult
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