pub struct ReflectPgOperator {Show 16 fields
pub oid: String,
pub oprname: String,
pub oprnamespace: String,
pub oprowner: String,
pub oprkind: i8,
pub oprcanmerge: bool,
pub oprcanhash: bool,
pub oprleft: Option<String>,
pub oprright: String,
pub oprresult: Option<String>,
pub oprcom: Option<String>,
pub oprnegate: Option<String>,
pub oprcode: Option<String>,
pub oprrest: Option<String>,
pub oprjoin: Option<String>,
pub description: Option<String>,
}Fields§
§oid: String§oprname: String§oprnamespace: String§oprowner: String§oprkind: i8§oprcanmerge: bool§oprcanhash: bool§oprleft: Option<String>§oprright: String§oprresult: Option<String>§oprcom: Option<String>§oprnegate: Option<String>§oprcode: Option<String>§oprrest: Option<String>§oprjoin: Option<String>§description: Option<String>Trait Implementations§
Source§impl Clone for ReflectPgOperator
impl Clone for ReflectPgOperator
Source§fn clone(&self) -> ReflectPgOperator
fn clone(&self) -> ReflectPgOperator
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 ReflectPgOperator
impl Debug for ReflectPgOperator
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.
Source§impl PartialEq for ReflectPgOperator
impl PartialEq for ReflectPgOperator
impl StructuralPartialEq for ReflectPgOperator
Auto Trait Implementations§
impl Freeze for ReflectPgOperator
impl RefUnwindSafe for ReflectPgOperator
impl Send for ReflectPgOperator
impl Sync for ReflectPgOperator
impl Unpin for ReflectPgOperator
impl UnsafeUnpin for ReflectPgOperator
impl UnwindSafe for ReflectPgOperator
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