[][src]Struct sqlite3_native::CellArray

#[repr(C)]pub struct CellArray {
    pub nCell: c_int,
    pub pRef: *mut MemPage,
    pub apCell: *mut *mut u8_0,
    pub szCell: *mut u16_0,
    pub apEnd: [*mut u8_0; 6],
    pub ixNx: [c_int; 6],
}

Fields

nCell: c_intpRef: *mut MemPageapCell: *mut *mut u8_0szCell: *mut u16_0apEnd: [*mut u8_0; 6]ixNx: [c_int; 6]

Trait Implementations

impl Clone for CellArray[src]

impl Copy for CellArray[src]

Auto Trait Implementations

impl !RefUnwindSafe for CellArray

impl !Send for CellArray

impl !Sync for CellArray

impl Unpin for CellArray

impl !UnwindSafe for CellArray

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.