pub trait IntoConcatWriteResult {
    type Output;

    // Required method
    fn into_concat_write_result(self) -> Self::Output;
}
Expand description

A helper trait used by ConcatTryWriter to convert wrapped function result to Result<T, E>.

Required Associated Types§

source

type Output

The resulting type after convertion.

Required Methods§

source

fn into_concat_write_result(self) -> Self::Output

Performs the conversion with error propagation.

Implementations on Foreign Types§

source§

impl IntoConcatWriteResult for ()

source§

impl<T, E: Debug> IntoConcatWriteResult for Result<T, E>

Implementors§