[][src]Enum redis_ts::TsAggregationType

pub enum TsAggregationType {
    Avg(u64),
    Sum(u64),
    Min(u64),
    Max(u64),
    Range(u64),
    Count(u64),
    First(u64),
    Last(u64),
    StdP(u64),
    StdS(u64),
    VarP(u64),
    VarS(u64),
}

Allows you to specify a redis time series aggreation with a time bucket.

Variants

Avg(u64)
Sum(u64)
Min(u64)
Max(u64)
Range(u64)
Count(u64)
First(u64)
Last(u64)
StdP(u64)
StdS(u64)
VarP(u64)
VarS(u64)

Trait Implementations

impl Clone for TsAggregationType[src]

impl Copy for TsAggregationType[src]

impl Debug for TsAggregationType[src]

impl Eq for TsAggregationType[src]

impl PartialEq<TsAggregationType> for TsAggregationType[src]

impl StructuralEq for TsAggregationType[src]

impl StructuralPartialEq for TsAggregationType[src]

impl ToRedisArgs for TsAggregationType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.