pub trait VTabCursor: Sized {
type Error: Display;
// Required methods
fn rowid(&self) -> i64;
fn column(&self, idx: u32) -> Value;
fn eof(&self) -> bool;
fn next(&mut self) -> ResultCode;
}Required Associated Types§
Required Methods§
fn rowid(&self) -> i64
fn column(&self, idx: u32) -> Value
fn eof(&self) -> bool
fn next(&mut self) -> ResultCode
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.