#enums #derive #io

macro io-enum

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

18 releases (7 stable)

1.1.3 Jan 27, 2024
1.1.1 Jun 29, 2023
1.1.0 Mar 26, 2023
1.0.2 Dec 10, 2022
0.1.3 Mar 4, 2019

#1898 in Rust patterns

Download history 6403/week @ 2023-11-20 6594/week @ 2023-11-27 10116/week @ 2023-12-04 9399/week @ 2023-12-11 8174/week @ 2023-12-18 5398/week @ 2023-12-25 8568/week @ 2024-01-01 8120/week @ 2024-01-08 8352/week @ 2024-01-15 7348/week @ 2024-01-22 6303/week @ 2024-01-29 5695/week @ 2024-02-05 5766/week @ 2024-02-12 6035/week @ 2024-02-19 7100/week @ 2024-02-26 5976/week @ 2024-03-04

25,517 downloads per month
Used in 117 crates (3 directly)

Apache-2.0 OR MIT

14KB
86 lines

io-enum

crates.io docs.rs license rust version github actions

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

Usage

Add this to your Cargo.toml:

[dependencies]
io-enum = "1"

Compiler support: requires rustc 1.56+

Examples

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.

Supported traits

  • auto_enums: A library for to allow multiple return types by automatically generated enum.
  • derive_utils: A procedural macro helper for easily writing derives macros for enums.
  • iter-enum: #[derive(Iterator, DoubleEndedIterator, ExactSizeIterator, FusedIterator, Extend)] for enums.

License

Licensed 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.

Dependencies

~0.4–0.8MB
~19K SLoC