pub struct ReplicatedComparison {Show 16 fields
pub schema: String,
pub metric: String,
pub inputs: ComparisonInputs,
pub comparable: bool,
pub paired: bool,
pub verdict: ComparisonVerdict,
pub reasons: Vec<ComparisonReason>,
pub baseline_implementation_id: Option<String>,
pub candidate_implementation_id: Option<String>,
pub identity: Option<ComparisonIdentity>,
pub baseline: SampleStatistics,
pub candidate: SampleStatistics,
pub median_delta_ns: f64,
pub median_delta_percent: Option<f64>,
pub confidence_interval: Option<ConfidenceInterval>,
pub tensor_stats: TensorStatsComparison,
}Fields§
§schema: String§metric: String§inputs: ComparisonInputs§comparable: bool§paired: bool§verdict: ComparisonVerdict§reasons: Vec<ComparisonReason>§baseline_implementation_id: Option<String>§candidate_implementation_id: Option<String>§identity: Option<ComparisonIdentity>§baseline: SampleStatistics§candidate: SampleStatistics§median_delta_ns: f64§median_delta_percent: Option<f64>§confidence_interval: Option<ConfidenceInterval>§tensor_stats: TensorStatsComparisonNumerical mechanism comparison, independent of timing eligibility.
Trait Implementations§
Source§impl Clone for ReplicatedComparison
impl Clone for ReplicatedComparison
Source§fn clone(&self) -> ReplicatedComparison
fn clone(&self) -> ReplicatedComparison
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 ReplicatedComparison
impl Debug for ReplicatedComparison
Source§impl<'de> Deserialize<'de> for ReplicatedComparison
impl<'de> Deserialize<'de> for ReplicatedComparison
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 ReplicatedComparison
impl PartialEq for ReplicatedComparison
Source§impl Serialize for ReplicatedComparison
impl Serialize for ReplicatedComparison
impl StructuralPartialEq for ReplicatedComparison
Auto Trait Implementations§
impl Freeze for ReplicatedComparison
impl RefUnwindSafe for ReplicatedComparison
impl Send for ReplicatedComparison
impl Sync for ReplicatedComparison
impl Unpin for ReplicatedComparison
impl UnsafeUnpin for ReplicatedComparison
impl UnwindSafe for ReplicatedComparison
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more