[][src]Struct utah2::combinators::aggregate::Min

pub struct Min<'a, I: 'a, T: 'a> where
    I: Iterator<Item = Window<'a, T>>,
    T: UtahNum
{ /* fields omitted */ }

Methods

impl<'a, I, T> Min<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>,
    T: UtahNum + 'a, 
[src]

Important traits for Min<'a, I, T>
pub fn new(df: I, other: Vec<String>, axis: UtahAxis) -> Min<'a, I, T>[src]

Trait Implementations

impl<'a, I: Clone + 'a, T: Clone + 'a> Clone for Min<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>,
    T: UtahNum
[src]

impl<'a, I: Debug + 'a, T: Debug + 'a> Debug for Min<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>,
    T: UtahNum
[src]

impl<'a, I, T> Iterator for Min<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>,
    T: UtahNum + Ord
[src]

type Item = T

The type of the elements being iterated over.

impl<'a, I, T> ToDataFrame<'a, T, T> for Min<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>,
    T: UtahNum + Ord
[src]

Auto Trait Implementations

impl<'a, I, T> RefUnwindSafe for Min<'a, I, T> where
    I: RefUnwindSafe

impl<'a, I, T> Send for Min<'a, I, T> where
    I: Send

impl<'a, I, T> Sync for Min<'a, I, T> where
    I: Sync

impl<'a, I, T> Unpin for Min<'a, I, T> where
    I: Unpin

impl<'a, I, T> UnwindSafe for Min<'a, I, T> where
    I: UnwindSafe

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,