[][src]Struct pcd_rs::reader::Reader

pub struct Reader<Record, R> where
    R: Read
{ /* fields omitted */ }

A reader type that loads points from PCD data.

Methods

impl<R, Record> Reader<Record, R> where
    R: BufRead
[src]

pub fn meta(&self) -> &PcdMeta[src]

Get meta data.

Trait Implementations

impl<R, Record> Iterator for Reader<Record, R> where
    R: BufRead,
    Record: PcdDeserialize
[src]

type Item = Fallible<Record>

The type of the elements being iterated over.

Auto Trait Implementations

impl<Record, R> RefUnwindSafe for Reader<Record, R> where
    R: RefUnwindSafe,
    Record: RefUnwindSafe

impl<Record, R> Send for Reader<Record, R> where
    R: Send,
    Record: Send

impl<Record, R> Sync for Reader<Record, R> where
    R: Sync,
    Record: Sync

impl<Record, R> Unpin for Reader<Record, R> where
    R: Unpin,
    Record: Unpin

impl<Record, R> UnwindSafe for Reader<Record, R> where
    R: UnwindSafe,
    Record: 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<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.