#enums #integer-value #macro #named #members #c-style #protocols

caret

Macros for declaring non-exhaustive C-style enumerations, with named members

18 releases

0.4.5 Apr 2, 2024
0.4.4 Sep 5, 2023
0.4.3 Aug 1, 2023
0.4.2 Jun 30, 2023
0.0.0 Jun 24, 2021

#485 in Rust patterns

Download history 130/week @ 2024-01-02 422/week @ 2024-01-09 436/week @ 2024-01-16 165/week @ 2024-01-23 173/week @ 2024-01-30 268/week @ 2024-02-06 256/week @ 2024-02-13 240/week @ 2024-02-20 507/week @ 2024-02-27 1884/week @ 2024-03-05 926/week @ 2024-03-12 1273/week @ 2024-03-19 1065/week @ 2024-03-26 1111/week @ 2024-04-02 1130/week @ 2024-04-09 348/week @ 2024-04-16

4,329 downloads per month
Used in 32 crates (5 directly)

MIT/Apache

9KB
102 lines

caret

Integers with some named values.

Crikey! Another Rust Enum Tool?

Suppose you have an integer type with some named values. For example, you might be implementing a protocol where "command" can be any 8-bit value, but where only a small number of commands are recognized.

In that case, you can use the caret_int macro to define a wrapper around u8 so named values are displayed with their preferred format, but you can still represent all the other values of the field:

use caret::caret_int;
caret_int!{
    struct Command(u8) {
       Get = 0,
       Put = 1,
       Swap = 2,
    }
}

let c1: Command = 2.into();
let c2: Command = 100.into();

assert_eq!(c1.to_string().as_str(), "Swap");
assert_eq!(c2.to_string().as_str(), "100");

assert_eq!(c1, Command::Swap);

This crate is developed as part of Arti, a project to implement Tor in Rust. Many other crates in Arti depend on it, but it should be of general use.

License: MIT OR Apache-2.0

No runtime deps

Features