[][src]Struct sqlite3_native::Trigger

#[repr(C)]pub struct Trigger {
    pub zName: *mut c_char,
    pub table: *mut c_char,
    pub op: u8_0,
    pub tr_tm: u8_0,
    pub pWhen: *mut Expr,
    pub pColumns: *mut IdList,
    pub pSchema: *mut Schema,
    pub pTabSchema: *mut Schema,
    pub step_list: *mut TriggerStep,
    pub pNext: *mut Trigger,
}

Fields

zName: *mut c_chartable: *mut c_charop: u8_0tr_tm: u8_0pWhen: *mut ExprpColumns: *mut IdListpSchema: *mut SchemapTabSchema: *mut Schemastep_list: *mut TriggerSteppNext: *mut Trigger

Trait Implementations

impl Clone for Trigger[src]

impl Copy for Trigger[src]

Auto Trait Implementations

impl !RefUnwindSafe for Trigger

impl !Send for Trigger

impl !Sync for Trigger

impl Unpin for Trigger

impl !UnwindSafe for Trigger

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.