pub struct Aggref {Show 18 fields
pub xpr: Option<Box<Node>>,
pub aggfnoid: u32,
pub aggtype: u32,
pub aggcollid: u32,
pub inputcollid: u32,
pub aggtranstype: u32,
pub aggargtypes: Vec<Node>,
pub aggdirectargs: Vec<Node>,
pub args: Vec<Node>,
pub aggorder: Vec<Node>,
pub aggdistinct: Vec<Node>,
pub aggfilter: Option<Box<Node>>,
pub aggstar: bool,
pub aggvariadic: bool,
pub aggkind: String,
pub agglevelsup: u32,
pub aggsplit: i32,
pub location: i32,
}
Fields§
§xpr: Option<Box<Node>>
§aggfnoid: u32
§aggtype: u32
§aggcollid: u32
§inputcollid: u32
§aggtranstype: u32
§aggargtypes: Vec<Node>
§aggdirectargs: Vec<Node>
§args: Vec<Node>
§aggorder: Vec<Node>
§aggdistinct: Vec<Node>
§aggfilter: Option<Box<Node>>
§aggstar: bool
§aggvariadic: bool
§aggkind: String
§agglevelsup: u32
§aggsplit: i32
§location: i32
Implementations§
Trait Implementations§
Source§impl Message for Aggref
impl Message for Aggref
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.impl StructuralPartialEq for Aggref
Auto Trait Implementations§
impl Freeze for Aggref
impl RefUnwindSafe for Aggref
impl Send for Aggref
impl Sync for Aggref
impl Unpin for Aggref
impl UnwindSafe for Aggref
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