pub struct StringAggFunc {
pub this: Expression,
pub separator: Option<Expression>,
pub order_by: Option<Vec<Ordered>>,
pub distinct: bool,
pub filter: Option<Expression>,
pub limit: Option<Box<Expression>>,
}Expand description
STRING_AGG function (PostgreSQL/Standard SQL)
Fields§
§this: Expression§separator: Option<Expression>§order_by: Option<Vec<Ordered>>§distinct: bool§filter: Option<Expression>§limit: Option<Box<Expression>>BigQuery LIMIT inside STRING_AGG
Trait Implementations§
Source§impl Clone for StringAggFunc
impl Clone for StringAggFunc
Source§fn clone(&self) -> StringAggFunc
fn clone(&self) -> StringAggFunc
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 StringAggFunc
impl Debug for StringAggFunc
Source§impl<'de> Deserialize<'de> for StringAggFunc
impl<'de> Deserialize<'de> for StringAggFunc
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StringAggFunc
impl PartialEq for StringAggFunc
Source§impl Serialize for StringAggFunc
impl Serialize for StringAggFunc
impl StructuralPartialEq for StringAggFunc
Auto Trait Implementations§
impl Freeze for StringAggFunc
impl RefUnwindSafe for StringAggFunc
impl Send for StringAggFunc
impl Sync for StringAggFunc
impl Unpin for StringAggFunc
impl UnwindSafe for StringAggFunc
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