Crates.io | io-enum |
lib.rs | io-enum |
version | 1.1.3 |
source | src |
created_at | 2019-02-03 08:45:08.09727 |
updated_at | 2024-01-27 12:23:28.937423 |
description | #[derive(Read, Write, Seek, BufRead)] for enums. |
homepage | |
repository | https://github.com/taiki-e/io-enum |
max_upload_size | |
id | 112333 |
size | 34,495 |
#[derive(Read, Write, Seek, BufRead)] for enums.
Add this to your Cargo.toml
:
[dependencies]
io-enum = "1"
Compiler support: requires rustc 1.56+
use std::{
fs::File,
io::{self, Write},
path::Path,
};
use io_enum::*;
#[derive(Read, Write, Seek, BufRead)]
enum Either<A, B> {
A(A),
B(B),
}
fn func(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.
Read
- example | generated codeBufRead
- example | generated codeWrite
- example | generated codeSeek
- example | generated codeLicensed under either of Apache License, Version 2.0 or MIT license 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.