Struct pgx_pg_sys::Trigger[][src]

#[repr(C)]
pub struct Trigger {
Show fields pub tgoid: Oid, pub tgname: *mut c_char, pub tgfoid: Oid, pub tgtype: int16, pub tgenabled: c_char, pub tgisinternal: bool, pub tgisclone: bool, pub tgconstrrelid: Oid, pub tgconstrindid: Oid, pub tgconstraint: Oid, pub tgdeferrable: bool, pub tginitdeferred: bool, pub tgnargs: int16, pub tgnattr: int16, pub tgattr: *mut int16, pub tgargs: *mut *mut c_char, pub tgqual: *mut c_char, pub tgoldtable: *mut c_char, pub tgnewtable: *mut c_char,
}

Fields

tgoid: Oidtgname: *mut c_chartgfoid: Oidtgtype: int16tgenabled: c_chartgisinternal: booltgisclone: booltgconstrrelid: Oidtgconstrindid: Oidtgconstraint: Oidtgdeferrable: booltginitdeferred: booltgnargs: int16tgnattr: int16tgattr: *mut int16tgargs: *mut *mut c_chartgqual: *mut c_chartgoldtable: *mut c_chartgnewtable: *mut c_char

Trait Implementations

impl Clone for Trigger[src]

impl Copy for Trigger[src]

impl Debug for Trigger[src]

impl Default 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.