Enum planus_cli::intermediate_language::types::Literal [−][src]
pub enum Literal {
Bool(bool),
String(String),
Int(IntegerLiteral),
Float(FloatLiteral),
Array(Vec<Literal>),
Vector(Vec<Literal>),
EnumTag {
variant_index: usize,
value: IntegerLiteral,
},
}Variants
Bool(bool)
Tuple Fields
0: boolString(String)
Tuple Fields
0: StringInt(IntegerLiteral)
Tuple Fields
Float(FloatLiteral)
Tuple Fields
0: FloatLiteralArray(Vec<Literal>)
Vector(Vec<Literal>)
EnumTag
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Literal
impl UnwindSafe for Literal
Blanket Implementations
Mutably borrows from an owned value. Read more
