pub struct FileMeasurement {
pub path: String,
pub first_try_success: bool,
pub eventual_success: bool,
pub iterations: u32,
pub error_codes: Vec<String>,
}Expand description
Result of measuring a single file.
Fields§
§path: StringFile path
first_try_success: boolWhether compilation succeeded on first try
eventual_success: boolWhether compilation eventually succeeded
iterations: u32Number of iterations needed
error_codes: Vec<String>Error codes encountered (if any)
Implementations§
Source§impl FileMeasurement
impl FileMeasurement
Trait Implementations§
Source§impl Clone for FileMeasurement
impl Clone for FileMeasurement
Source§fn clone(&self) -> FileMeasurement
fn clone(&self) -> FileMeasurement
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 FileMeasurement
impl Debug for FileMeasurement
Source§impl<'de> Deserialize<'de> for FileMeasurement
impl<'de> Deserialize<'de> for FileMeasurement
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 FileMeasurement
impl RefUnwindSafe for FileMeasurement
impl Send for FileMeasurement
impl Sync for FileMeasurement
impl Unpin for FileMeasurement
impl UnsafeUnpin for FileMeasurement
impl UnwindSafe for FileMeasurement
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