Trait custom_print::IntoConcatWriteResult[][src]

pub trait IntoConcatWriteResult {
    type Output;
    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>.

Associated Types

The resulting type after convertion.

Required methods

Performs the conversion with error propagation.

Implementations on Foreign Types

Implementors