[][src]Struct biofile::bedgraph::BedGraphDataLineIter

pub struct BedGraphDataLineIter<D> { /* fields omitted */ }

Implementations

impl<D> BedGraphDataLineIter<D>[src]

pub fn get_filename(&self) -> &str[src]

Trait Implementations

impl<D: Float + FromStr<Err = E>, E: Debug> Iterator for BedGraphDataLineIter<D>[src]

type Item = BedGraphDataLine<D>

The type of the elements being iterated over.

impl<D, E> ToIterator<'_, BedGraphDataLineIter<D>, <BedGraphDataLineIter<D> as Iterator>::Item> for BedGraph where
    D: Float + FromStr<Err = E>,
    E: Debug
[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for BedGraphDataLineIter<D> where
    D: RefUnwindSafe
[src]

impl<D> Send for BedGraphDataLineIter<D> where
    D: Send
[src]

impl<D> Sync for BedGraphDataLineIter<D> where
    D: Sync
[src]

impl<D> Unpin for BedGraphDataLineIter<D> where
    D: Unpin
[src]

impl<D> UnwindSafe for BedGraphDataLineIter<D> where
    D: UnwindSafe
[src]

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, V> IntoBinnedIntervalIter<V> for I where
    V: Copy + Num + FromPrimitive + PartialOrd<V>,
    I: Iterator
[src]

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

impl<I> IntoFlatZipIter<I> for I where
    I: Iterator
[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, 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>,