pub struct MutationIsolationRecord {
pub language: String,
pub worker_index: usize,
pub shard_index: Option<usize>,
pub mutant_id: Option<String>,
pub scratch_root: Option<Utf8PathBuf>,
pub copy_duration_ms: u128,
pub excluded_path_count: usize,
pub excluded_path_samples: Vec<Utf8PathBuf>,
pub exclusion_patterns: Vec<String>,
pub error: Option<String>,
}Fields§
§language: String§worker_index: usize§shard_index: Option<usize>§mutant_id: Option<String>§scratch_root: Option<Utf8PathBuf>§copy_duration_ms: u128§excluded_path_count: usize§excluded_path_samples: Vec<Utf8PathBuf>§exclusion_patterns: Vec<String>§error: Option<String>Trait Implementations§
Source§impl Clone for MutationIsolationRecord
impl Clone for MutationIsolationRecord
Source§fn clone(&self) -> MutationIsolationRecord
fn clone(&self) -> MutationIsolationRecord
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 MutationIsolationRecord
impl Debug for MutationIsolationRecord
Source§impl Default for MutationIsolationRecord
impl Default for MutationIsolationRecord
Source§fn default() -> MutationIsolationRecord
fn default() -> MutationIsolationRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MutationIsolationRecord
impl<'de> Deserialize<'de> for MutationIsolationRecord
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
Source§impl PartialEq for MutationIsolationRecord
impl PartialEq for MutationIsolationRecord
Source§fn eq(&self, other: &MutationIsolationRecord) -> bool
fn eq(&self, other: &MutationIsolationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MutationIsolationRecord
impl Serialize for MutationIsolationRecord
impl Eq for MutationIsolationRecord
impl StructuralPartialEq for MutationIsolationRecord
Auto Trait Implementations§
impl Freeze for MutationIsolationRecord
impl RefUnwindSafe for MutationIsolationRecord
impl Send for MutationIsolationRecord
impl Sync for MutationIsolationRecord
impl Unpin for MutationIsolationRecord
impl UnsafeUnpin for MutationIsolationRecord
impl UnwindSafe for MutationIsolationRecord
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