pub struct ExplainReport<'a> {
pub inventory: InventoryContext<'a>,
pub entry: &'a AllowEntry,
pub selector_precision: u32,
pub broad_scope: bool,
pub current_findings: &'a [Finding],
pub match_outcomes: &'a [MatchOutcome],
pub evidence_references: &'a [EvidenceReference<'a>],
pub suggested_actions: &'a [String],
pub proof_commands: &'a [String],
}Fields§
§inventory: InventoryContext<'a>§entry: &'a AllowEntry§selector_precision: u32§broad_scope: bool§current_findings: &'a [Finding]§match_outcomes: &'a [MatchOutcome]§evidence_references: &'a [EvidenceReference<'a>]§suggested_actions: &'a [String]§proof_commands: &'a [String]Trait Implementations§
Source§impl<'a> Clone for ExplainReport<'a>
impl<'a> Clone for ExplainReport<'a>
Source§fn clone(&self) -> ExplainReport<'a>
fn clone(&self) -> ExplainReport<'a>
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<'a> Debug for ExplainReport<'a>
impl<'a> Debug for ExplainReport<'a>
impl<'a> Copy for ExplainReport<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExplainReport<'a>
impl<'a> RefUnwindSafe for ExplainReport<'a>
impl<'a> Send for ExplainReport<'a>
impl<'a> Sync for ExplainReport<'a>
impl<'a> Unpin for ExplainReport<'a>
impl<'a> UnsafeUnpin for ExplainReport<'a>
impl<'a> UnwindSafe for ExplainReport<'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