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