pub struct ReflectPgTrigger {Show 21 fields
pub tgrelid: String,
pub tgparentid: Option<String>,
pub tgname: String,
pub tgfoid: String,
pub tgtype: i16,
pub tgenabled: i8,
pub tgisinternal: bool,
pub tgconstrrelid: Option<String>,
pub tgconstrindid: Option<String>,
pub tgconstraint: Option<String>,
pub tgdeferrable: bool,
pub tginitdeferred: bool,
pub tgnargs: i16,
pub tgattr: Vec<i16>,
pub tgargs: Vec<u8>,
pub tgqual: Option<String>,
pub tgoldtable: Option<String>,
pub tgnewtable: Option<String>,
pub description: Option<String>,
pub seclabel: Option<String>,
pub seclabel_provider: Option<String>,
}Fields§
§tgrelid: String§tgparentid: Option<String>§tgname: String§tgfoid: String§tgtype: i16§tgenabled: i8§tgisinternal: bool§tgconstrrelid: Option<String>§tgconstrindid: Option<String>§tgconstraint: Option<String>§tgdeferrable: bool§tginitdeferred: bool§tgnargs: i16§tgattr: Vec<i16>§tgargs: Vec<u8>§tgqual: Option<String>§tgoldtable: Option<String>§tgnewtable: Option<String>§description: Option<String>§seclabel: Option<String>§seclabel_provider: Option<String>Trait Implementations§
Source§impl Clone for ReflectPgTrigger
impl Clone for ReflectPgTrigger
Source§fn clone(&self) -> ReflectPgTrigger
fn clone(&self) -> ReflectPgTrigger
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReflectPgTrigger
impl Debug for ReflectPgTrigger
Source§impl<'a> From<ReflectPgTriggerBorrowed<'a>> for ReflectPgTrigger
impl<'a> From<ReflectPgTriggerBorrowed<'a>> for ReflectPgTrigger
Source§fn from(_: ReflectPgTriggerBorrowed<'a>) -> Self
fn from(_: ReflectPgTriggerBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgTrigger
impl PartialEq for ReflectPgTrigger
impl StructuralPartialEq for ReflectPgTrigger
Auto Trait Implementations§
impl Freeze for ReflectPgTrigger
impl RefUnwindSafe for ReflectPgTrigger
impl Send for ReflectPgTrigger
impl Sync for ReflectPgTrigger
impl Unpin for ReflectPgTrigger
impl UnsafeUnpin for ReflectPgTrigger
impl UnwindSafe for ReflectPgTrigger
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more