Trait VTabCursor

Source
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§

Source

fn rowid(&self) -> i64

Source

fn column(&self, idx: u32) -> Value

Source

fn eof(&self) -> bool

Source

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.

Implementors§