This crate exposes a type, Exit
, which allows using ?
in main
while also specifying custom exit status codes.
The goal of this crate was to provide a proof of concept and sample implementation for the ideas discussed in this blog post.
```rust
use exit::Exit;
use std::env; use std::option;
enum MyErr { MissingArg, ParseErrorUserNum, ParseErrorGroupNum, }
impl From
impl From
fn main() -> Exit
let user_num : u32 = user_num_string.parse()
.map_err(|_| MyErr::ParseErrorUserNum)?;
let group_num : u32 = group_num_string.parse()
.map_err(|_| MyErr::ParseErrorGroupNum)?;
println!("Hello, user #{} from group #{}!", user_num, group_num);
Exit::Ok
} ```
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.