pub struct PatchExecution {
pub run_id: String,
pub improvements: u32,
pub regressions: u32,
}Expand description
Results from running a paired-patch experiment through the Forge engine.
Fields§
§run_id: String§improvements: u32§regressions: u32Trait Implementations§
Source§impl Clone for PatchExecution
impl Clone for PatchExecution
Source§fn clone(&self) -> PatchExecution
fn clone(&self) -> PatchExecution
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 PatchExecution
impl Debug for PatchExecution
Source§impl<'de> Deserialize<'de> for PatchExecution
impl<'de> Deserialize<'de> for PatchExecution
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 PatchExecution
impl RefUnwindSafe for PatchExecution
impl Send for PatchExecution
impl Sync for PatchExecution
impl Unpin for PatchExecution
impl UnsafeUnpin for PatchExecution
impl UnwindSafe for PatchExecution
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