pub struct CategoryScore {
pub category: String,
pub score: u32,
pub findings_count: usize,
}Expand description
Score breakdown by category
Fields§
§category: String§score: u32§findings_count: usizeTrait Implementations§
Source§impl Clone for CategoryScore
impl Clone for CategoryScore
Source§fn clone(&self) -> CategoryScore
fn clone(&self) -> CategoryScore
Returns a duplicate of the value. Read more
1.0.0 · 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 CategoryScore
impl Debug for CategoryScore
Source§impl<'de> Deserialize<'de> for CategoryScore
impl<'de> Deserialize<'de> for CategoryScore
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 CategoryScore
impl RefUnwindSafe for CategoryScore
impl Send for CategoryScore
impl Sync for CategoryScore
impl Unpin for CategoryScore
impl UnwindSafe for CategoryScore
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