pub struct ReviewReport {Show 13 fields
pub summary: String,
pub manifest_path: PathBuf,
pub lockfile_path: PathBuf,
pub manifests: Vec<ReviewedManifest>,
pub dependencies: Vec<String>,
pub lockfile_summary: Option<LockfileSummary>,
pub findings: Vec<ReviewFinding>,
pub recommendation: Option<Recommendation>,
pub confidence: Option<Confidence>,
pub tradeoffs: Vec<Tradeoff>,
pub follow_up_recommendations: Vec<Recommendation>,
pub trust_notes: Vec<TrustNote>,
pub receipts: Vec<Receipt>,
}Fields§
§summary: String§manifest_path: PathBuf§lockfile_path: PathBuf§manifests: Vec<ReviewedManifest>§dependencies: Vec<String>§lockfile_summary: Option<LockfileSummary>§findings: Vec<ReviewFinding>§recommendation: Option<Recommendation>§confidence: Option<Confidence>§tradeoffs: Vec<Tradeoff>§follow_up_recommendations: Vec<Recommendation>§trust_notes: Vec<TrustNote>§receipts: Vec<Receipt>Trait Implementations§
Source§impl Clone for ReviewReport
impl Clone for ReviewReport
Source§fn clone(&self) -> ReviewReport
fn clone(&self) -> ReviewReport
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 moreSource§impl Debug for ReviewReport
impl Debug for ReviewReport
Source§impl PartialEq for ReviewReport
impl PartialEq for ReviewReport
Source§impl Serialize for ReviewReport
impl Serialize for ReviewReport
impl Eq for ReviewReport
impl StructuralPartialEq for ReviewReport
Auto Trait Implementations§
impl Freeze for ReviewReport
impl RefUnwindSafe for ReviewReport
impl Send for ReviewReport
impl Sync for ReviewReport
impl Unpin for ReviewReport
impl UnsafeUnpin for ReviewReport
impl UnwindSafe for ReviewReport
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