pub struct DerivationCellRelation {
pub cell_index: usize,
pub ordinals: Vec<u8>,
pub operation: RowOperation,
}Expand description
One partition cell together with the operation that derives it from the generator.
Fields§
§cell_index: usizeZero-based contiguous cell index in source-row order.
ordinals: Vec<u8>The contiguous row ordinals belonging to this cell.
operation: RowOperationThe exact affine/reversal operation mapping the generator onto this cell.
Trait Implementations§
Source§impl Clone for DerivationCellRelation
impl Clone for DerivationCellRelation
Source§fn clone(&self) -> DerivationCellRelation
fn clone(&self) -> DerivationCellRelation
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 DerivationCellRelation
impl Debug for DerivationCellRelation
impl Eq for DerivationCellRelation
Source§impl PartialEq for DerivationCellRelation
impl PartialEq for DerivationCellRelation
impl StructuralPartialEq for DerivationCellRelation
Auto Trait Implementations§
impl Freeze for DerivationCellRelation
impl RefUnwindSafe for DerivationCellRelation
impl Send for DerivationCellRelation
impl Sync for DerivationCellRelation
impl Unpin for DerivationCellRelation
impl UnsafeUnpin for DerivationCellRelation
impl UnwindSafe for DerivationCellRelation
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