[][src]Struct sqlite3_native::unixInodeInfo

#[repr(C)]pub struct unixInodeInfo {
    pub fileId: unixFileId,
    pub pLockMutex: *mut sqlite3_mutex,
    pub nShared: c_int,
    pub nLock: c_int,
    pub eFileLock: c_uchar,
    pub bProcessLock: c_uchar,
    pub pUnused: *mut UnixUnusedFd,
    pub nRef: c_int,
    pub pShmNode: *mut unixShmNode,
    pub pNext: *mut unixInodeInfo,
    pub pPrev: *mut unixInodeInfo,
}

Fields

fileId: unixFileIdpLockMutex: *mut sqlite3_mutexnShared: c_intnLock: c_inteFileLock: c_ucharbProcessLock: c_ucharpUnused: *mut UnixUnusedFdnRef: c_intpShmNode: *mut unixShmNodepNext: *mut unixInodeInfopPrev: *mut unixInodeInfo

Trait Implementations

impl Clone for unixInodeInfo[src]

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