Trait custom_print::ExpectConcatWriteResult[][src]

pub trait ExpectConcatWriteResult {
    type Output;
    fn expect_concat_write_result(self) -> Self::Output;
}
Expand description

A helper trait used by ConcatWriter to convert wrapped function result to Result<T, NeverError> with error unwrapping.

Associated Types

The resulting type after convertion.

Required methods

Performs the conversion with error unwrapping.

Implementations on Foreign Types

Implementors