pub struct VulnerabilityFound {
pub vuln_type: String,
pub severity: String,
pub description: String,
}Available on crate feature
security-analysis only.Fields§
§vuln_type: String§severity: String§description: StringTrait Implementations§
Source§impl Clone for VulnerabilityFound
impl Clone for VulnerabilityFound
Source§fn clone(&self) -> VulnerabilityFound
fn clone(&self) -> VulnerabilityFound
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 VulnerabilityFound
impl Debug for VulnerabilityFound
Source§impl<'de> Deserialize<'de> for VulnerabilityFound
impl<'de> Deserialize<'de> for VulnerabilityFound
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 VulnerabilityFound
impl RefUnwindSafe for VulnerabilityFound
impl Send for VulnerabilityFound
impl Sync for VulnerabilityFound
impl Unpin for VulnerabilityFound
impl UnsafeUnpin for VulnerabilityFound
impl UnwindSafe for VulnerabilityFound
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