![crates-badge] ![docs-badge] ![license-badge] ![rustc-badge]
#[derive(Read, Write, Seek, BufRead)] for enums.
Add this to your Cargo.toml
:
toml
[dependencies]
io-enum = "0.2"
The current io-enum requires Rust 1.31 or later.
```rust use io_enum::*; use std::fs::File; use std::io::{self, Write}; use std::path::Path;
enum Either { 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 crate for how to automate patterns like this.
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.