pub struct ComparisonResult {
pub label_a: String,
pub label_b: String,
pub size_a: usize,
pub size_b: usize,
pub aggregate: AggregateDelta,
pub two_sample: TwoSampleTests,
pub temporal: TemporalAnalysis,
pub digram: DigramAnalysis,
pub markov: MarkovAnalysis,
pub multi_lag: MultiLagAnalysis,
pub run_lengths: RunLengthComparison,
}Expand description
Full comparison result between two byte streams.
Fields§
§label_a: String§label_b: String§size_a: usize§size_b: usize§aggregate: AggregateDelta§two_sample: TwoSampleTests§temporal: TemporalAnalysis§digram: DigramAnalysis§markov: MarkovAnalysis§multi_lag: MultiLagAnalysis§run_lengths: RunLengthComparisonTrait Implementations§
Source§impl Clone for ComparisonResult
impl Clone for ComparisonResult
Source§fn clone(&self) -> ComparisonResult
fn clone(&self) -> ComparisonResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ComparisonResult
impl Debug for ComparisonResult
Auto Trait Implementations§
impl Freeze for ComparisonResult
impl RefUnwindSafe for ComparisonResult
impl Send for ComparisonResult
impl Sync for ComparisonResult
impl Unpin for ComparisonResult
impl UnsafeUnpin for ComparisonResult
impl UnwindSafe for ComparisonResult
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