Struct polars_core::utils::TrustMyLength[][src]

pub struct TrustMyLength<I, J> where
    I: Iterator<Item = J>, 
{ /* fields omitted */ }

Implementations

impl<I, J> TrustMyLength<I, J> where
    I: Iterator<Item = J>, 
[src]

pub fn new(iter: I, len: usize) -> TrustMyLength<I, J>

Notable traits for TrustMyLength<I, J>

impl<I, J> Iterator for TrustMyLength<I, J> where
    I: Iterator<Item = J>, 
type Item = J;
[src]

Trait Implementations

impl<I, J> DoubleEndedIterator for TrustMyLength<I, J> where
    I: Iterator<Item = J> + DoubleEndedIterator
[src]

impl<I, J> ExactSizeIterator for TrustMyLength<I, J> where
    I: Iterator<Item = J>, 
[src]

impl<I, J> Iterator for TrustMyLength<I, J> where
    I: Iterator<Item = J>, 
[src]

type Item = J

The type of the elements being iterated over.

Auto Trait Implementations

impl<I, J> RefUnwindSafe for TrustMyLength<I, J> where
    I: RefUnwindSafe

impl<I, J> Send for TrustMyLength<I, J> where
    I: Send

impl<I, J> Sync for TrustMyLength<I, J> where
    I: Sync

impl<I, J> Unpin for TrustMyLength<I, J> where
    I: Unpin

impl<I, J> UnwindSafe for TrustMyLength<I, J> 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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> CustomIterTools for T where
    T: Iterator + ?Sized
[src]

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

impl<T> FromCast<T> for T

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> Pointable for T

type Init = T

The type for initializers.

impl<T> PolarsIterator for T where
    T: ExactSizeIterator + DoubleEndedIterator + Send + Sync + ?Sized
[src]

impl<T> ToCells for T where
    T: IntoIterator,
    <T as IntoIterator>::Item: ToCell
[src]

impl<T> ToRow for T where
    T: ToCells
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,