[][src]Struct sqlite3_native::CollSeq

#[repr(C)]pub struct CollSeq {
    pub zName: *mut c_char,
    pub enc: u8_0,
    pub pUser: *mut c_void,
    pub xCmp: Option<unsafe extern "C" fn(_: *mut c_void, _: c_int, _: *const c_void, _: c_int, _: *const c_void) -> c_int>,
    pub xDel: Option<unsafe extern "C" fn(_: *mut c_void)>,
}

Fields

zName: *mut c_charenc: u8_0pUser: *mut c_voidxCmp: Option<unsafe extern "C" fn(_: *mut c_void, _: c_int, _: *const c_void, _: c_int, _: *const c_void) -> c_int>xDel: Option<unsafe extern "C" fn(_: *mut c_void)>

Trait Implementations

impl Clone for CollSeq[src]

impl Copy for CollSeq[src]

Auto Trait Implementations

impl RefUnwindSafe for CollSeq

impl !Send for CollSeq

impl !Sync for CollSeq

impl Unpin for CollSeq

impl UnwindSafe for CollSeq

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.