pub struct AnalysisRecord {
pub run_id: String,
pub diff: ExperimentDiff,
pub scores_json: String,
pub attribution_json: Option<String>,
}Expand description
Record of analysis derived from execution.
Fields§
§run_id: String§diff: ExperimentDiff§scores_json: String§attribution_json: Option<String>Trait Implementations§
Source§impl Clone for AnalysisRecord
impl Clone for AnalysisRecord
Source§fn clone(&self) -> AnalysisRecord
fn clone(&self) -> AnalysisRecord
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 AnalysisRecord
impl Debug for AnalysisRecord
Source§impl<'de> Deserialize<'de> for AnalysisRecord
impl<'de> Deserialize<'de> for AnalysisRecord
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 AnalysisRecord
impl RefUnwindSafe for AnalysisRecord
impl Send for AnalysisRecord
impl Sync for AnalysisRecord
impl Unpin for AnalysisRecord
impl UnsafeUnpin for AnalysisRecord
impl UnwindSafe for AnalysisRecord
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