pub struct RunLengthComparison {
pub distribution_a: Vec<(usize, usize)>,
pub distribution_b: Vec<(usize, usize)>,
}Expand description
Byte run-length distributions.
Fields§
§distribution_a: Vec<(usize, usize)>(run_length, count) pairs for stream A.
distribution_b: Vec<(usize, usize)>(run_length, count) pairs for stream B.
Trait Implementations§
Source§impl Clone for RunLengthComparison
impl Clone for RunLengthComparison
Source§fn clone(&self) -> RunLengthComparison
fn clone(&self) -> RunLengthComparison
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 RunLengthComparison
impl Debug for RunLengthComparison
Auto Trait Implementations§
impl Freeze for RunLengthComparison
impl RefUnwindSafe for RunLengthComparison
impl Send for RunLengthComparison
impl Sync for RunLengthComparison
impl Unpin for RunLengthComparison
impl UnsafeUnpin for RunLengthComparison
impl UnwindSafe for RunLengthComparison
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