pub struct AnalysisOutput {
pub summary: String,
pub vulnerabilities: Vec<String>,
pub recommended_modules: Vec<String>,
}Fields§
§summary: String§vulnerabilities: Vec<String>§recommended_modules: Vec<String>Trait Implementations§
Source§impl Clone for AnalysisOutput
impl Clone for AnalysisOutput
Source§fn clone(&self) -> AnalysisOutput
fn clone(&self) -> AnalysisOutput
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 AnalysisOutput
impl Debug for AnalysisOutput
Source§impl<'de> Deserialize<'de> for AnalysisOutput
impl<'de> Deserialize<'de> for AnalysisOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AnalysisOutput
impl RefUnwindSafe for AnalysisOutput
impl Send for AnalysisOutput
impl Sync for AnalysisOutput
impl Unpin for AnalysisOutput
impl UnsafeUnpin for AnalysisOutput
impl UnwindSafe for AnalysisOutput
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