pub trait ResultExt {
type Output;
// Required methods
fn convert(self) -> Self::Output;
fn context(self, message: String) -> Self::Output;
fn reword(self, message: String) -> Self::Output;
}pub trait ResultExt {
type Output;
// Required methods
fn convert(self) -> Self::Output;
fn context(self, message: String) -> Self::Output;
fn reword(self, message: String) -> Self::Output;
}