[][src]Struct yeslogic_ucd_parse::UcdLineParser

pub struct UcdLineParser<R, D> { /* fields omitted */ }

A line oriented parser for a particular UCD file.

Callers can build a line parser via the UcdFile::from_dir method.

The R type parameter refers to the underlying io::Read implementation from which the UCD data is read.

The D type parameter refers to the type of the record parsed out of each line.

Trait Implementations

impl<R: Debug, D: Debug> Debug for UcdLineParser<R, D>[src]

impl<R: Read, D: FromStr<Err = Error>> Iterator for UcdLineParser<R, D>[src]

type Item = Result<D, Error>

The type of the elements being iterated over.

Auto Trait Implementations

impl<R, D> RefUnwindSafe for UcdLineParser<R, D> where
    D: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, D> Send for UcdLineParser<R, D> where
    D: Send,
    R: Send

impl<R, D> Sync for UcdLineParser<R, D> where
    D: Sync,
    R: Sync

impl<R, D> Unpin for UcdLineParser<R, D> where
    D: Unpin,
    R: Unpin

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