[][src]Struct sqlite3_native::sqlite3InitInfo

#[repr(C)]pub struct sqlite3InitInfo {
    pub newTnum: c_int,
    pub iDb: u8_0,
    pub busy: u8_0,
    pub orphanTrigger_imposterTable_reopenMemdb: [u8; 1],
    pub c2rust_padding: [u8; 1],
    pub azInit: *mut *mut c_char,
}

Fields

newTnum: c_intiDb: u8_0busy: u8_0orphanTrigger_imposterTable_reopenMemdb: [u8; 1]c2rust_padding: [u8; 1]azInit: *mut *mut c_char

Implementations

impl sqlite3InitInfo[src]

pub fn set_orphanTrigger(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn orphanTrigger(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_imposterTable(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn imposterTable(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_reopenMemdb(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn reopenMemdb(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

Trait Implementations

impl Clone for sqlite3InitInfo[src]

impl Copy for sqlite3InitInfo[src]

Auto Trait Implementations

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.