[][src]Struct sqlite3_native::Cte

#[repr(C)]pub struct Cte {
    pub zName: *mut c_char,
    pub pCols: *mut ExprList,
    pub pSelect: *mut Select,
    pub zCteErr: *const c_char,
}

Fields

zName: *mut c_charpCols: *mut ExprListpSelect: *mut SelectzCteErr: *const c_char

Trait Implementations

impl Clone for Cte[src]

impl Copy for Cte[src]

Auto Trait Implementations

impl !RefUnwindSafe for Cte

impl !Send for Cte

impl !Sync for Cte

impl Unpin for Cte

impl !UnwindSafe for Cte

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.