[][src]Struct sqlite3_native::unixShmNode

#[repr(C)]pub struct unixShmNode {
    pub pInode: *mut unixInodeInfo,
    pub pShmMutex: *mut sqlite3_mutex,
    pub zFilename: *mut c_char,
    pub hShm: c_int,
    pub szRegion: c_int,
    pub nRegion: u16_0,
    pub isReadonly: u8_0,
    pub isUnlocked: u8_0,
    pub apRegion: *mut *mut c_char,
    pub nRef: c_int,
    pub pFirst: *mut unixShm,
}

Fields

pInode: *mut unixInodeInfopShmMutex: *mut sqlite3_mutexzFilename: *mut c_charhShm: c_intszRegion: c_intnRegion: u16_0isReadonly: u8_0isUnlocked: u8_0apRegion: *mut *mut c_charnRef: c_intpFirst: *mut unixShm

Trait Implementations

impl Clone for unixShmNode[src]

impl Copy for unixShmNode[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.