summaryrefslogtreecommitdiff
path: root/examples/05-enum/output/rust/src/numbers.rs
blob: 1c6201267437b340d1dfb06147d55487a64bec45 (plain)
1
2
3
4
5
6
7
8
9
// Generated by hobgoblin.

/// A small number.
#[derive(Debug, Hash, PartialEq)]
pub enum SmallNumber {
    Zero,
    One,
    Two,
}