[][src]Struct sqlite3_native::Column

#[repr(C)]pub struct Column {
    pub zName: *mut c_char,
    pub pDflt: *mut Expr,
    pub zColl: *mut c_char,
    pub notNull: u8_0,
    pub affinity: c_char,
    pub szEst: u8_0,
    pub hName: u8_0,
    pub colFlags: u16_0,
}

Fields

zName: *mut c_charpDflt: *mut ExprzColl: *mut c_charnotNull: u8_0affinity: c_charszEst: u8_0hName: u8_0colFlags: u16_0

Trait Implementations

impl Clone for Column[src]

impl Copy for Column[src]

Auto Trait Implementations

impl !RefUnwindSafe for Column

impl !Send for Column

impl !Sync for Column

impl Unpin for Column

impl !UnwindSafe for Column

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.