pub trait IntoResult<T, E> {
// Required method
fn into_result(self) -> Result<T, E>;
}
Expand description
Converts the type into a std::io::Result<()>
Required Methods§
Sourcefn into_result(self) -> Result<T, E>
fn into_result(self) -> Result<T, E>
Converts the type into a std::io::Result<()>