pub trait Wrap<T> { // Required method fn wrap(self) -> Result<T>; }
Trait for a std::result::Result that can be wrapped into a Result
std::result::Result
Result
Wrap the value into a Result
Propagates errors from self
self