Struct Rows
pub struct Rows(/* private fields */);Expand description
A collection of rows.
Implementations§
§impl Rows
impl Rows
pub fn build(
groups: Vec<(EncodingGroup, InstructionFilter, ComparisonMatrix)>,
) -> Rows
pub fn build( groups: Vec<(EncodingGroup, InstructionFilter, ComparisonMatrix)>, ) -> Rows
Builds Rows from a list of groups.
pub fn export_summary<A: Arch, C: Computation>(
self,
arch_names: Vec<String>,
encodings: IndexedEncodings<A, C>,
) -> ArchComparisonSummary<A, C>
pub fn export_summary<A: Arch, C: Computation>( self, arch_names: Vec<String>, encodings: IndexedEncodings<A, C>, ) -> ArchComparisonSummary<A, C>
Exports the rows to a summary format suitable for serialization.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Rows
impl RefUnwindSafe for Rows
impl Send for Rows
impl Sync for Rows
impl Unpin for Rows
impl UnwindSafe for Rows
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
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