[][src]Struct spatialite_sys::fts5_tokenizer

#[repr(C)]
pub struct fts5_tokenizer { pub xCreate: Option<unsafe extern "C" fn(arg1: *mut c_void, azArg: *mut *const c_char, nArg: c_int, ppOut: *mut *mut Fts5Tokenizer) -> c_int>, pub xDelete: Option<unsafe extern "C" fn(arg1: *mut Fts5Tokenizer)>, pub xTokenize: Option<unsafe extern "C" fn(arg1: *mut Fts5Tokenizer, pCtx: *mut c_void, flags: c_int, pText: *const c_char, nText: c_int, xToken: Option<unsafe extern "C" fn(pCtx: *mut c_void, tflags: c_int, pToken: *const c_char, nToken: c_int, iStart: c_int, iEnd: c_int) -> c_int>) -> c_int>, }

Fields

xCreate: Option<unsafe extern "C" fn(arg1: *mut c_void, azArg: *mut *const c_char, nArg: c_int, ppOut: *mut *mut Fts5Tokenizer) -> c_int>xDelete: Option<unsafe extern "C" fn(arg1: *mut Fts5Tokenizer)>xTokenize: Option<unsafe extern "C" fn(arg1: *mut Fts5Tokenizer, pCtx: *mut c_void, flags: c_int, pText: *const c_char, nText: c_int, xToken: Option<unsafe extern "C" fn(pCtx: *mut c_void, tflags: c_int, pToken: *const c_char, nToken: c_int, iStart: c_int, iEnd: c_int) -> c_int>) -> c_int>

Trait Implementations

impl Clone for fts5_tokenizer[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for fts5_tokenizer[src]

impl Debug for fts5_tokenizer[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]