Skip to main content

Enumerated

Type Alias Enumerated 

Source
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>,
    },
}

Variants§

§

Small

Fields

§

Big

Fields

§raw: BigInt<'a>