pub struct AnalyseResult {
pub diagnostics: Vec<Diagnostic>,
pub findings: Vec<Finding>,
}Expand description
Combined result from allium analyse.
Fields§
§diagnostics: Vec<Diagnostic>§findings: Vec<Finding>Trait Implementations§
Source§impl Clone for AnalyseResult
impl Clone for AnalyseResult
Source§fn clone(&self) -> AnalyseResult
fn clone(&self) -> AnalyseResult
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 AnalyseResult
impl Debug for AnalyseResult
Auto Trait Implementations§
impl Freeze for AnalyseResult
impl RefUnwindSafe for AnalyseResult
impl Send for AnalyseResult
impl Sync for AnalyseResult
impl Unpin for AnalyseResult
impl UnsafeUnpin for AnalyseResult
impl UnwindSafe for AnalyseResult
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