pub struct PercentileFunc {
pub this: Expression,
pub percentile: Expression,
pub order_by: Option<Vec<Ordered>>,
pub filter: Option<Expression>,
}Expand description
PERCENTILE_CONT / PERCENTILE_DISC function
Fields§
§this: Expression§percentile: Expression§order_by: Option<Vec<Ordered>>§filter: Option<Expression>Trait Implementations§
Source§impl Clone for PercentileFunc
impl Clone for PercentileFunc
Source§fn clone(&self) -> PercentileFunc
fn clone(&self) -> PercentileFunc
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 PercentileFunc
impl Debug for PercentileFunc
Source§impl<'de> Deserialize<'de> for PercentileFunc
impl<'de> Deserialize<'de> for PercentileFunc
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 PercentileFunc
impl PartialEq for PercentileFunc
Source§impl Serialize for PercentileFunc
impl Serialize for PercentileFunc
impl StructuralPartialEq for PercentileFunc
Auto Trait Implementations§
impl Freeze for PercentileFunc
impl RefUnwindSafe for PercentileFunc
impl Send for PercentileFunc
impl Sync for PercentileFunc
impl Unpin for PercentileFunc
impl UnwindSafe for PercentileFunc
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