pub struct ReflectPgTriggerBorrowed<'a> {Show 21 fields
pub tgrelid: &'a str,
pub tgparentid: Option<&'a str>,
pub tgname: &'a str,
pub tgfoid: &'a str,
pub tgtype: i16,
pub tgenabled: i8,
pub tgisinternal: bool,
pub tgconstrrelid: Option<&'a str>,
pub tgconstrindid: Option<&'a str>,
pub tgconstraint: Option<&'a str>,
pub tgdeferrable: bool,
pub tginitdeferred: bool,
pub tgnargs: i16,
pub tgattr: ArrayIterator<'a, i16>,
pub tgargs: &'a [u8],
pub tgqual: Option<&'a str>,
pub tgoldtable: Option<&'a str>,
pub tgnewtable: Option<&'a str>,
pub description: Option<&'a str>,
pub seclabel: Option<&'a str>,
pub seclabel_provider: Option<&'a str>,
}Fields§
§tgrelid: &'a str§tgparentid: Option<&'a str>§tgname: &'a str§tgfoid: &'a str§tgtype: i16§tgenabled: i8§tgisinternal: bool§tgconstrrelid: Option<&'a str>§tgconstrindid: Option<&'a str>§tgconstraint: Option<&'a str>§tgdeferrable: bool§tginitdeferred: bool§tgnargs: i16§tgattr: ArrayIterator<'a, i16>§tgargs: &'a [u8]§tgqual: Option<&'a str>§tgoldtable: Option<&'a str>§tgnewtable: Option<&'a str>§description: Option<&'a str>§seclabel: Option<&'a str>§seclabel_provider: Option<&'a str>Trait Implementations§
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.
Auto Trait Implementations§
impl<'a> Freeze for ReflectPgTriggerBorrowed<'a>
impl<'a> RefUnwindSafe for ReflectPgTriggerBorrowed<'a>
impl<'a> Send for ReflectPgTriggerBorrowed<'a>
impl<'a> Sync for ReflectPgTriggerBorrowed<'a>
impl<'a> Unpin for ReflectPgTriggerBorrowed<'a>
impl<'a> UnsafeUnpin for ReflectPgTriggerBorrowed<'a>
impl<'a> UnwindSafe for ReflectPgTriggerBorrowed<'a>
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