pub struct JsonReport<'a> {
pub schema_version: &'static str,
pub schema_uri: &'static str,
pub graph: &'a AuthorityGraph,
pub findings: Vec<FindingWithFingerprint>,
pub summary: Summary,
}Expand description
JSON report containing the full authority graph and all findings.
Fields§
§schema_version: &'static str§schema_uri: &'static strCanonical URI of the JSON Schema this report conforms to. Non-breaking addition (1.x consumers ignore unknown fields).
graph: &'a AuthorityGraph§findings: Vec<FindingWithFingerprint>§summary: SummaryTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for JsonReport<'a>
impl<'a> RefUnwindSafe for JsonReport<'a>
impl<'a> Send for JsonReport<'a>
impl<'a> Sync for JsonReport<'a>
impl<'a> Unpin for JsonReport<'a>
impl<'a> UnsafeUnpin for JsonReport<'a>
impl<'a> UnwindSafe for JsonReport<'a>
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