pub struct MutationRecord {Show 26 fields
pub id: String,
pub language: String,
pub path: Utf8PathBuf,
pub symbol: String,
pub operator: String,
pub domain: String,
pub status: MutationStatus,
pub from: Option<String>,
pub to: Option<String>,
pub line_range: Option<LineRange>,
pub source_span: Option<SourceSpan>,
pub diff: Option<String>,
pub diff_path: Option<Utf8PathBuf>,
pub outcome_path: Option<Utf8PathBuf>,
pub command_log_path: Option<Utf8PathBuf>,
pub stdout_log_path: Option<Utf8PathBuf>,
pub stderr_log_path: Option<Utf8PathBuf>,
pub risk_note: Option<String>,
pub suggested_test: Option<String>,
pub skip_reason: Option<String>,
pub selected_test_command: Option<String>,
pub test_selection_hint: Option<String>,
pub test_selection_fallback: Option<String>,
pub brittleness_probe: bool,
pub command: Option<String>,
pub duration_ms: u128,
}Fields§
§id: String§language: String§path: Utf8PathBuf§symbol: String§operator: String§domain: String§status: MutationStatus§from: Option<String>§to: Option<String>§line_range: Option<LineRange>§source_span: Option<SourceSpan>§diff: Option<String>§diff_path: Option<Utf8PathBuf>§outcome_path: Option<Utf8PathBuf>§command_log_path: Option<Utf8PathBuf>§stdout_log_path: Option<Utf8PathBuf>§stderr_log_path: Option<Utf8PathBuf>§risk_note: Option<String>§suggested_test: Option<String>§skip_reason: Option<String>§selected_test_command: Option<String>§test_selection_hint: Option<String>§test_selection_fallback: Option<String>§brittleness_probe: bool§command: Option<String>§duration_ms: u128Trait Implementations§
Source§impl Clone for MutationRecord
impl Clone for MutationRecord
Source§fn clone(&self) -> MutationRecord
fn clone(&self) -> MutationRecord
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 MutationRecord
impl Debug for MutationRecord
Source§impl<'de> Deserialize<'de> for MutationRecord
impl<'de> Deserialize<'de> for MutationRecord
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 MutationRecord
impl PartialEq for MutationRecord
Source§fn eq(&self, other: &MutationRecord) -> bool
fn eq(&self, other: &MutationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MutationRecord
impl Serialize for MutationRecord
impl Eq for MutationRecord
impl StructuralPartialEq for MutationRecord
Auto Trait Implementations§
impl Freeze for MutationRecord
impl RefUnwindSafe for MutationRecord
impl Send for MutationRecord
impl Sync for MutationRecord
impl Unpin for MutationRecord
impl UnsafeUnpin for MutationRecord
impl UnwindSafe for MutationRecord
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