pub struct RelationDelta {
pub insert: Option<CudaBuffer>,
pub delete: Option<CudaBuffer>,
}Expand description
Incremental update for a base relation.
Fields§
§insert: Option<CudaBuffer>Tuples to insert (if any).
delete: Option<CudaBuffer>Tuples to delete (if any).
Implementations§
Source§impl RelationDelta
impl RelationDelta
Sourcepub fn new(insert: Option<CudaBuffer>, delete: Option<CudaBuffer>) -> Self
pub fn new(insert: Option<CudaBuffer>, delete: Option<CudaBuffer>) -> Self
Create a new incremental update.
Auto Trait Implementations§
impl !Freeze for RelationDelta
impl RefUnwindSafe for RelationDelta
impl Send for RelationDelta
impl Sync for RelationDelta
impl Unpin for RelationDelta
impl UnsafeUnpin for RelationDelta
impl UnwindSafe for RelationDelta
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