# io-enum
[](https://travis-ci.com/taiki-e/io-enum)
[](https://crates.io/crates/io-enum/)
[](https://docs.rs/io-enum/)
[](https://crates.io/crates/io-enum/)
[](https://blog.rust-lang.org/2018/10/25/Rust-1.30.0.html)
\#\[derive(Read, BufRead, Write, Seek)\] for enums.
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
io-enum = "0.1"
```
The current version of io-enum requires Rust 1.30 or later.
## Examples
```rust
use io_enum::*;
use std::fs::File;
use std::io::{self, Write};
use std::path::Path;
#[derive(Read, BufRead, Write, Seek)]
enum Either<A, B> {
A(A),
B(B),
}
fn foo(path: Option<&Path>) -> impl Write {
if let Some(path) = path {
Either::A(File::open(path).unwrap())
} else {
Either::B(io::stdout())
}
}
```
See [auto_enums](https://github.com/taiki-e/auto_enums) for how to automate patterns like this.
## Supported traits
* [`Read`](https://doc.rust-lang.org/std/io/trait.Read.html) - [generated code](doc/read.md)
* [`BufRead`](https://doc.rust-lang.org/std/io/trait.BufRead.html) - [generated code](doc/buf_read.md)
* [`Write`](https://doc.rust-lang.org/std/io/trait.Write.html) - [generated code](doc/write.md)
* [`Seek`](https://doc.rust-lang.org/std/io/trait.Seek.html) - [generated code](doc/seek.md)
See [this issue](https://github.com/taiki-e/auto_enums/issues/11) for other traits.
## License
Licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
at your option.
### Contribution
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.