[][src]Struct sqlite3_native::unixShm

#[repr(C)]pub struct unixShm {
    pub pShmNode: *mut unixShmNode,
    pub pNext: *mut unixShm,
    pub hasMutex: u8_0,
    pub id: u8_0,
    pub sharedMask: u16_0,
    pub exclMask: u16_0,
}

Fields

pShmNode: *mut unixShmNodepNext: *mut unixShmhasMutex: u8_0id: u8_0sharedMask: u16_0exclMask: u16_0

Trait Implementations

impl Clone for unixShm[src]

impl Copy for unixShm[src]

Auto Trait Implementations

impl RefUnwindSafe for unixShm

impl !Send for unixShm

impl !Sync for unixShm

impl Unpin for unixShm

impl UnwindSafe for unixShm

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.