pub struct ReflectPgOperatorBorrowed<'a> {Show 16 fields
pub oid: &'a str,
pub oprname: &'a str,
pub oprnamespace: &'a str,
pub oprowner: &'a str,
pub oprkind: i8,
pub oprcanmerge: bool,
pub oprcanhash: bool,
pub oprleft: Option<&'a str>,
pub oprright: &'a str,
pub oprresult: Option<&'a str>,
pub oprcom: Option<&'a str>,
pub oprnegate: Option<&'a str>,
pub oprcode: Option<&'a str>,
pub oprrest: Option<&'a str>,
pub oprjoin: Option<&'a str>,
pub description: Option<&'a str>,
}Fields§
§oid: &'a str§oprname: &'a str§oprnamespace: &'a str§oprowner: &'a str§oprkind: i8§oprcanmerge: bool§oprcanhash: bool§oprleft: Option<&'a str>§oprright: &'a str§oprresult: Option<&'a str>§oprcom: Option<&'a str>§oprnegate: Option<&'a str>§oprcode: Option<&'a str>§oprrest: Option<&'a str>§oprjoin: Option<&'a str>§description: Option<&'a str>Trait Implementations§
Source§impl<'a> From<ReflectPgOperatorBorrowed<'a>> for ReflectPgOperator
impl<'a> From<ReflectPgOperatorBorrowed<'a>> for ReflectPgOperator
Source§fn from(_: ReflectPgOperatorBorrowed<'a>) -> Self
fn from(_: ReflectPgOperatorBorrowed<'a>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for ReflectPgOperatorBorrowed<'a>
impl<'a> RefUnwindSafe for ReflectPgOperatorBorrowed<'a>
impl<'a> Send for ReflectPgOperatorBorrowed<'a>
impl<'a> Sync for ReflectPgOperatorBorrowed<'a>
impl<'a> Unpin for ReflectPgOperatorBorrowed<'a>
impl<'a> UnsafeUnpin for ReflectPgOperatorBorrowed<'a>
impl<'a> UnwindSafe for ReflectPgOperatorBorrowed<'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