[][src]Struct sqlite3_native::Walker

#[repr(C)]pub struct Walker {
    pub pParse: *mut Parse,
    pub xExprCallback: Option<unsafe extern "C" fn(_: *mut Walker, _: *mut Expr) -> c_int>,
    pub xSelectCallback: Option<unsafe extern "C" fn(_: *mut Walker, _: *mut Select) -> c_int>,
    pub xSelectCallback2: Option<unsafe extern "C" fn(_: *mut Walker, _: *mut Select)>,
    pub walkerDepth: c_int,
    pub eCode: u16_0,
    pub u: C2RustUnnamed_19,
}

Fields

pParse: *mut ParsexExprCallback: Option<unsafe extern "C" fn(_: *mut Walker, _: *mut Expr) -> c_int>xSelectCallback: Option<unsafe extern "C" fn(_: *mut Walker, _: *mut Select) -> c_int>xSelectCallback2: Option<unsafe extern "C" fn(_: *mut Walker, _: *mut Select)>walkerDepth: c_inteCode: u16_0u: C2RustUnnamed_19

Trait Implementations

impl Clone for Walker[src]

impl Copy for Walker[src]

Auto Trait Implementations

impl !RefUnwindSafe for Walker

impl !Send for Walker

impl !Sync for Walker

impl Unpin for Walker

impl !UnwindSafe for Walker

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.