pub type Enumerated<'a> = Integer<'a>;Expand description
Executable ENUMERATED values use the same exact integer representation as INTEGER.
Aliased Type§
pub enum Enumerated<'a> {
Small {
v: i64,
},
Big {
raw: BigInt<'a>,
},
}