pub trait VTabFind<'vtab>: VTab<'vtab> {
    // Required method
    fn find_function(
        &'vtab mut self,
        argc: i32,
        name: &str
    ) -> Option<FindResult>;
}

Required Methods§

source

fn find_function(&'vtab mut self, argc: i32, name: &str) -> Option<FindResult>

Object Safety§

This trait is not object safe.

Implementors§