Enum polars_lazy::dsl::function_expr::rolling::RollingFunction
source · pub enum RollingFunction {
Min(RollingOptionsFixedWindow),
Max(RollingOptionsFixedWindow),
Mean(RollingOptionsFixedWindow),
Sum(RollingOptionsFixedWindow),
Quantile(RollingOptionsFixedWindow),
Var(RollingOptionsFixedWindow),
Std(RollingOptionsFixedWindow),
Skew(usize, bool),
}Available on crate feature
rolling_window only.Variants§
Min(RollingOptionsFixedWindow)
Max(RollingOptionsFixedWindow)
Mean(RollingOptionsFixedWindow)
Sum(RollingOptionsFixedWindow)
Quantile(RollingOptionsFixedWindow)
Var(RollingOptionsFixedWindow)
Std(RollingOptionsFixedWindow)
Skew(usize, bool)
Available on crate feature
moment only.Trait Implementations§
source§impl Clone for RollingFunction
impl Clone for RollingFunction
source§fn clone(&self) -> RollingFunction
fn clone(&self) -> RollingFunction
Returns a copy 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 RollingFunction
impl Debug for RollingFunction
source§impl<'de> Deserialize<'de> for RollingFunction
impl<'de> Deserialize<'de> for RollingFunction
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<RollingFunction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<RollingFunction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for RollingFunction
impl Display for RollingFunction
source§impl Hash for RollingFunction
impl Hash for RollingFunction
source§impl PartialEq for RollingFunction
impl PartialEq for RollingFunction
source§fn eq(&self, other: &RollingFunction) -> bool
fn eq(&self, other: &RollingFunction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for RollingFunction
impl Serialize for RollingFunction
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RollingFunction
Auto Trait Implementations§
impl Freeze for RollingFunction
impl !RefUnwindSafe for RollingFunction
impl Send for RollingFunction
impl Sync for RollingFunction
impl Unpin for RollingFunction
impl !UnwindSafe for RollingFunction
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more