pub struct EvgTestStats {
pub test_file: String,
pub task_name: String,
pub variant: String,
pub distro: Option<String>,
pub date: String,
pub num_pass: u64,
pub num_fail: u64,
pub avg_duration_pass: f64,
}Fields§
§test_file: String§task_name: String§variant: String§distro: Option<String>§date: String§num_pass: u64§num_fail: u64§avg_duration_pass: f64Trait Implementations§
Source§impl Clone for EvgTestStats
impl Clone for EvgTestStats
Source§fn clone(&self) -> EvgTestStats
fn clone(&self) -> EvgTestStats
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 EvgTestStats
impl Debug for EvgTestStats
Source§impl<'de> Deserialize<'de> for EvgTestStats
impl<'de> Deserialize<'de> for EvgTestStats
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 EvgTestStats
impl RefUnwindSafe for EvgTestStats
impl Send for EvgTestStats
impl Sync for EvgTestStats
impl Unpin for EvgTestStats
impl UnwindSafe for EvgTestStats
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