pub struct ReflectPgAggregate {Show 20 fields
pub aggfnoid: String,
pub aggkind: i8,
pub aggnumdirectargs: i16,
pub aggtransfn: String,
pub aggfinalfn: Option<String>,
pub aggcombinefn: Option<String>,
pub aggserialfn: Option<String>,
pub aggdeserialfn: Option<String>,
pub aggmtransfn: Option<String>,
pub aggminvtransfn: Option<String>,
pub aggmfinalfn: Option<String>,
pub aggfinalextra: bool,
pub aggmfinalextra: bool,
pub aggfinalmodify: i8,
pub aggmfinalmodify: i8,
pub aggsortop: Option<String>,
pub aggtranstype: String,
pub aggmtranstype: Option<String>,
pub agginitval: Option<String>,
pub aggminitval: Option<String>,
}Fields§
§aggfnoid: String§aggkind: i8§aggnumdirectargs: i16§aggtransfn: String§aggfinalfn: Option<String>§aggcombinefn: Option<String>§aggserialfn: Option<String>§aggdeserialfn: Option<String>§aggmtransfn: Option<String>§aggminvtransfn: Option<String>§aggmfinalfn: Option<String>§aggfinalextra: bool§aggmfinalextra: bool§aggfinalmodify: i8§aggmfinalmodify: i8§aggsortop: Option<String>§aggtranstype: String§aggmtranstype: Option<String>§agginitval: Option<String>§aggminitval: Option<String>Trait Implementations§
Source§impl Clone for ReflectPgAggregate
impl Clone for ReflectPgAggregate
Source§fn clone(&self) -> ReflectPgAggregate
fn clone(&self) -> ReflectPgAggregate
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 ReflectPgAggregate
impl Debug for ReflectPgAggregate
Source§impl<'a> From<ReflectPgAggregateBorrowed<'a>> for ReflectPgAggregate
impl<'a> From<ReflectPgAggregateBorrowed<'a>> for ReflectPgAggregate
Source§fn from(_: ReflectPgAggregateBorrowed<'a>) -> Self
fn from(_: ReflectPgAggregateBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgAggregate
impl PartialEq for ReflectPgAggregate
impl StructuralPartialEq for ReflectPgAggregate
Auto Trait Implementations§
impl Freeze for ReflectPgAggregate
impl RefUnwindSafe for ReflectPgAggregate
impl Send for ReflectPgAggregate
impl Sync for ReflectPgAggregate
impl Unpin for ReflectPgAggregate
impl UnsafeUnpin for ReflectPgAggregate
impl UnwindSafe for ReflectPgAggregate
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