[][src]Trait combine::error::StreamErrorInto

pub trait StreamErrorInto<Item, Range>: Sized {
    pub fn into_other_error<T, Item2, Range2>(self) -> T
    where
        T: StreamError<Item2, Range2>,
        Item2: From<Item>,
        Range2: From<Range>
; }

Defines a conversion between two stream error types.

Like StreamError::into_other but with a more general signature (This will take the place of into_other on breaking release of combine)

Required methods

pub fn into_other_error<T, Item2, Range2>(self) -> T where
    T: StreamError<Item2, Range2>,
    Item2: From<Item>,
    Range2: From<Range>, 
[src]

Loading content...

Implementors

impl<Item, Range> StreamErrorInto<Item, Range> for StringStreamError[src]

impl<Item, Range> StreamErrorInto<Item, Range> for UnexpectedParse[src]

impl<Item, Range> StreamErrorInto<Item, Range> for Error<Item, Range>[src]

This is supported on crate feature std only.
Loading content...