[−][src]Type Definition combine::ConsumedResult
type ConsumedResult<O, I> = FastResult<O, <I as StreamOnce>::Error>;
A Result
type which has the consumed status flattened into the result.
Conversions to and from std::result::Result
can be done using result.into()
or
From::from(result)