pub trait ExpectConcatWriteResult {
    type Output;

    // Required method
    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.

Required Associated Types§

source

type Output

The resulting type after convertion.

Required Methods§

source

fn expect_concat_write_result(self) -> Self::Output

Performs the conversion with error unwrapping.

Implementations on Foreign Types§

source§

impl ExpectConcatWriteResult for ()

source§

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

Implementors§