Enum moore_svlog_syntax::ast::EventExpr [−][src]
pub enum EventExpr<'a> {
Edge {
span: Span,
edge: EdgeIdent,
value: Expr<'a>,
},
Iff {
span: Span,
expr: Box<EventExpr<'a>>,
cond: Expr<'a>,
},
Or {
span: Span,
lhs: Box<EventExpr<'a>>,
rhs: Box<EventExpr<'a>>,
},
}Variants
Trait Implementations
Apply a function to each child node.
Apply a function to this node.
Obtain a span which can be used to refer to this node in error messages
presented to humans. This will generally be the name for things like
entities, processes, and variables. Defaults to return whatever span()
returns. Read more
Auto Trait Implementations
impl<'a> !RefUnwindSafe for EventExpr<'a>
impl<'a> !UnwindSafe for EventExpr<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more