pub struct ApproxQuantile {
pub this: Box<Expression>,
pub quantile: Option<Box<Expression>>,
pub accuracy: Option<Box<Expression>>,
pub weight: Option<Box<Expression>>,
pub error_tolerance: Option<Box<Expression>>,
}Expand description
ApproxQuantile
Fields§
§this: Box<Expression>§quantile: Option<Box<Expression>>§accuracy: Option<Box<Expression>>§weight: Option<Box<Expression>>§error_tolerance: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for ApproxQuantile
impl Clone for ApproxQuantile
Source§fn clone(&self) -> ApproxQuantile
fn clone(&self) -> ApproxQuantile
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 ApproxQuantile
impl Debug for ApproxQuantile
Source§impl<'de> Deserialize<'de> for ApproxQuantile
impl<'de> Deserialize<'de> for ApproxQuantile
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 ApproxQuantile
impl PartialEq for ApproxQuantile
Source§impl Serialize for ApproxQuantile
impl Serialize for ApproxQuantile
impl StructuralPartialEq for ApproxQuantile
Auto Trait Implementations§
impl Freeze for ApproxQuantile
impl RefUnwindSafe for ApproxQuantile
impl Send for ApproxQuantile
impl Sync for ApproxQuantile
impl Unpin for ApproxQuantile
impl UnwindSafe for ApproxQuantile
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