quick_from
A derive macro for quickly implementing From
on on enum variants that wrap
other types.
```rust
extern crate quick_from;
use std::{io, fs};
enum Error { InvalidInput,
#[quick_from]
Io(io::Error),
}
fn my_read(s : &str) -> Result
Ok(fs::read(s)?)
} ```