pub struct DummyHost;Trait Implementations§
Source§impl Host for DummyHost
impl Host for DummyHost
fn scan_start(&mut self, _rel_id: i32) -> i32
fn scan_delta_start(&mut self, _rel_id: i32) -> i32
fn scan_index_start(&mut self, _rel_id: i32, _col_idx: i32, _val: i64) -> i32
fn scan_aggregate_start(&mut self, _rel_id: i32, _description: Vec<i32>) -> i32
fn scan_next(&mut self, _iter_id: i32) -> i32
fn get_col(&mut self, _ptr: i32, _idx: i32) -> i64
fn insert(&mut self, _rel_id: i32, _val: i64)
Source§fn merge_deltas(&mut self) -> i32
fn merge_deltas(&mut self) -> i32
Merges deltas and returns 1 if changes occurred, 0 otherwise.
fn debuglog(&mut self, _val: i64)
Auto Trait Implementations§
impl Freeze for DummyHost
impl RefUnwindSafe for DummyHost
impl Send for DummyHost
impl Sync for DummyHost
impl Unpin for DummyHost
impl UnsafeUnpin for DummyHost
impl UnwindSafe for DummyHost
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more