pub struct ParCorrQuery {
pub x: usize,
pub y: usize,
pub z_start: usize,
pub z_len: usize,
}Expand description
One batch query: column indexes into a shared column list.
Fields§
§x: usizeIndex of X column.
y: usizeIndex of Y column.
z_start: usizeStart index into a shared flat conditioning-index buffer.
z_len: usizeNumber of conditioning columns.
Trait Implementations§
Source§impl Clone for ParCorrQuery
impl Clone for ParCorrQuery
Source§fn clone(&self) -> ParCorrQuery
fn clone(&self) -> ParCorrQuery
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 moreimpl Copy for ParCorrQuery
Source§impl Debug for ParCorrQuery
impl Debug for ParCorrQuery
impl Eq for ParCorrQuery
Source§impl Hash for ParCorrQuery
impl Hash for ParCorrQuery
Source§impl PartialEq for ParCorrQuery
impl PartialEq for ParCorrQuery
impl StructuralPartialEq for ParCorrQuery
Auto Trait Implementations§
impl Freeze for ParCorrQuery
impl RefUnwindSafe for ParCorrQuery
impl Send for ParCorrQuery
impl Sync for ParCorrQuery
impl Unpin for ParCorrQuery
impl UnsafeUnpin for ParCorrQuery
impl UnwindSafe for ParCorrQuery
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