Enum envuse_parser::parser::ast::Expression
source · pub enum Expression {
Document {
span: Span,
executable: Option<String>,
elements: Vec<Expression>,
},
CommentBlock {
span: Span,
raw: Vec<String>,
},
Variable {
span: Span,
comment: Box<Option<Expression>>,
name: String,
variable_type: Option<String>,
default_value: Box<Option<Expression>>,
},
DefaultValue {
span: Span,
value: String,
},
}Expand description
Expression
Used
Variants
Document
CommentBlock
Variable
DefaultValue
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more