pub enum PragmaValue {
Paren(Box<PragmaValueParen>),
Number(Box<Number>),
StringLiteral(Box<StringLiteral>),
Identifier(Box<Identifier>),
}Variants
Paren(Box<PragmaValueParen>)
Number(Box<Number>)
StringLiteral(Box<StringLiteral>)
Identifier(Box<Identifier>)
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for PragmaValue
impl Send for PragmaValue
impl Sync for PragmaValue
impl Unpin for PragmaValue
impl UnwindSafe for PragmaValue
Blanket Implementations
Mutably borrows from an owned value. Read more