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§
Required Methods§
Sourcefn expect_concat_write_result(self) -> Self::Output
fn expect_concat_write_result(self) -> Self::Output
Performs the conversion with error unwrapping.