pub struct HistoryRecord {
pub timestamp: String,
pub project_path: String,
pub overall_score: f64,
pub tools: Vec<ToolScore>,
}Expand description
A single scan history record.
Fields§
§timestamp: String§project_path: String§overall_score: f64§tools: Vec<ToolScore>Trait Implementations§
Source§impl Clone for HistoryRecord
impl Clone for HistoryRecord
Source§fn clone(&self) -> HistoryRecord
fn clone(&self) -> HistoryRecord
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 HistoryRecord
impl Debug for HistoryRecord
Source§impl<'de> Deserialize<'de> for HistoryRecord
impl<'de> Deserialize<'de> for HistoryRecord
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 HistoryRecord
impl RefUnwindSafe for HistoryRecord
impl Send for HistoryRecord
impl Sync for HistoryRecord
impl Unpin for HistoryRecord
impl UnsafeUnpin for HistoryRecord
impl UnwindSafe for HistoryRecord
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