pub struct ReceiptSet { /* private fields */ }Expand description
In-memory queryable set of loaded receipts.
Implementations§
Source§impl ReceiptSet
impl ReceiptSet
pub fn from_loaded(loaded: &[LoadedReceipt]) -> Self
pub fn matching_findings( &self, tool_prefixes: &[&str], check_ids: &[&str], codes: &[&str], ) -> Vec<FindingRef>
pub fn matching_findings_with_data( &self, tool_prefixes: &[&str], check_ids: &[&str], codes: &[&str], ) -> Vec<MatchedFinding>
Trait Implementations§
Source§impl Clone for ReceiptSet
impl Clone for ReceiptSet
Source§fn clone(&self) -> ReceiptSet
fn clone(&self) -> ReceiptSet
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ReceiptSet
impl RefUnwindSafe for ReceiptSet
impl Send for ReceiptSet
impl Sync for ReceiptSet
impl Unpin for ReceiptSet
impl UnsafeUnpin for ReceiptSet
impl UnwindSafe for ReceiptSet
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