Rust crate which provides the AsResult<T, E>
and IntoResult<T, E>
traits.
By default, the following types from the standard library have implementations of these traits:
Common when spawning commands is the desire to convert the exit status into a result:
```rust use as_result::IntoResult; use std::process::Command;
Command::new("/usr/bin/echo") .arg("hello world") .status() .andthen(IntoResult::intoresult) .unwrap();
Command::new("/usr/bin/echo") .arg("hello world") .status() .unwrap() .into_result() .unwrap() ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.