[][src]Enum lognplot::tsdb::RangeQueryResult

pub enum RangeQueryResult<V, M> where
    M: Metrics<V> + From<V>, 
{ Observations(Vec<Observation<V>>), Aggregations(Vec<Aggregation<V, M>>), }

Inner results, can be either a series of single observations, or a series of aggregate observations.

Variants

Observations(Vec<Observation<V>>)
Aggregations(Vec<Aggregation<V, M>>)

Methods

impl<V, M> RangeQueryResult<V, M> where
    M: Metrics<V> + From<V>, 
[src]

pub fn len(&self) -> usize[src]

Trait Implementations

impl<V: Debug, M: Debug> Debug for RangeQueryResult<V, M> where
    M: Metrics<V> + From<V>, 
[src]

Auto Trait Implementations

impl<V, M> Send for RangeQueryResult<V, M> where
    M: Send,
    V: Send

impl<V, M> Sync for RangeQueryResult<V, M> where
    M: Sync,
    V: Sync

impl<V, M> Unpin for RangeQueryResult<V, M> where
    M: Unpin,
    V: Unpin

impl<V, M> UnwindSafe for RangeQueryResult<V, M> where
    M: UnwindSafe,
    V: UnwindSafe

impl<V, M> RefUnwindSafe for RangeQueryResult<V, M> where
    M: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

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

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

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.

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

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

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