io-enum 0.1.3

#[derive(Read, BufRead, Write, Seek)] for enums.
Documentation

io-enum

Build Status version documentation license Rustc Version

#[derive(Read, BufRead, Write, Seek)] for enums.

Usage

Add this to your Cargo.toml:

[dependencies]
io-enum = "0.1"

The current version of io-enum requires Rust 1.30 or later.

Examples

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 for how to automate patterns like this.

Supported traits

See this issue for other traits.

License

Licensed under either of

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.