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