pub struct DerivationMatch {
pub generator_size: usize,
pub kind: DerivationKind,
pub cells: Vec<DerivationCellRelation>,
}Expand description
One detected derivation family for a fixed generator-cell size.
Fields§
§generator_size: usizeThe generator-cell size in row positions.
kind: DerivationKindThe detected named derivation kind.
cells: Vec<DerivationCellRelation>The operation relating each partition cell back to the generator cell.
Trait Implementations§
Source§impl Clone for DerivationMatch
impl Clone for DerivationMatch
Source§fn clone(&self) -> DerivationMatch
fn clone(&self) -> DerivationMatch
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 DerivationMatch
impl Debug for DerivationMatch
impl Eq for DerivationMatch
Source§impl PartialEq for DerivationMatch
impl PartialEq for DerivationMatch
impl StructuralPartialEq for DerivationMatch
Auto Trait Implementations§
impl Freeze for DerivationMatch
impl RefUnwindSafe for DerivationMatch
impl Send for DerivationMatch
impl Sync for DerivationMatch
impl Unpin for DerivationMatch
impl UnsafeUnpin for DerivationMatch
impl UnwindSafe for DerivationMatch
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