pub struct SecurityScoreResult {
pub overall_score: u32,
pub security_grade: String,
pub risk_level: String,
pub critical_issues: Vec<String>,
pub recommendations: Vec<String>,
}Available on crate feature
web-technologies only.Fields§
§overall_score: u32§security_grade: String§risk_level: String§critical_issues: Vec<String>§recommendations: Vec<String>Trait Implementations§
Source§impl Clone for SecurityScoreResult
impl Clone for SecurityScoreResult
Source§fn clone(&self) -> SecurityScoreResult
fn clone(&self) -> SecurityScoreResult
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 SecurityScoreResult
impl Debug for SecurityScoreResult
Source§impl<'de> Deserialize<'de> for SecurityScoreResult
impl<'de> Deserialize<'de> for SecurityScoreResult
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 SecurityScoreResult
impl RefUnwindSafe for SecurityScoreResult
impl Send for SecurityScoreResult
impl Sync for SecurityScoreResult
impl Unpin for SecurityScoreResult
impl UnsafeUnpin for SecurityScoreResult
impl UnwindSafe for SecurityScoreResult
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