pub struct PartitionBlockMatch {
pub left_block_index: usize,
pub right_block_index: usize,
pub ordinals: Vec<u8>,
}Expand description
One exact block match shared by two validated partitions.
Fields§
§left_block_index: usizeMatching block index in the left partition.
right_block_index: usizeMatching block index in the right partition.
ordinals: Vec<u8>Shared row ordinals, preserved in the left block’s order.
Trait Implementations§
Source§impl Clone for PartitionBlockMatch
impl Clone for PartitionBlockMatch
Source§fn clone(&self) -> PartitionBlockMatch
fn clone(&self) -> PartitionBlockMatch
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 PartitionBlockMatch
impl Debug for PartitionBlockMatch
impl Eq for PartitionBlockMatch
Source§impl PartialEq for PartitionBlockMatch
impl PartialEq for PartitionBlockMatch
impl StructuralPartialEq for PartitionBlockMatch
Auto Trait Implementations§
impl Freeze for PartitionBlockMatch
impl RefUnwindSafe for PartitionBlockMatch
impl Send for PartitionBlockMatch
impl Sync for PartitionBlockMatch
impl Unpin for PartitionBlockMatch
impl UnsafeUnpin for PartitionBlockMatch
impl UnwindSafe for PartitionBlockMatch
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