pub struct IlpTagEntry {
pub i: u32,
pub j: u32,
pub k: u32,
pub num_rows: u32,
pub buffer: Option<CudaBuffer>,
}Expand description
Metadata for a single active rule (i,j,k), its result cardinality, and the projected join result buffer (retained for batch credit queries).
Fields§
§i: u32First body relation index.
j: u32Second body relation index.
k: u32Head relation index.
num_rows: u32Number of result rows for this entry.
buffer: Option<CudaBuffer>The projected join result buffer, retained for batch credit queries.
Auto Trait Implementations§
impl !Freeze for IlpTagEntry
impl RefUnwindSafe for IlpTagEntry
impl Send for IlpTagEntry
impl Sync for IlpTagEntry
impl Unpin for IlpTagEntry
impl UnsafeUnpin for IlpTagEntry
impl UnwindSafe for IlpTagEntry
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