Enum calyx_frontend::ast::StaticGuardExpr
source · pub enum StaticGuardExpr {
And(Box<StaticGuardExpr>, Box<StaticGuardExpr>),
Or(Box<StaticGuardExpr>, Box<StaticGuardExpr>),
Not(Box<StaticGuardExpr>),
CompOp(CompGuard),
Atom(Atom),
StaticInfo((u64, u64)),
}
Expand description
The AST for StaticGuardExprs
Variants§
And(Box<StaticGuardExpr>, Box<StaticGuardExpr>)
Or(Box<StaticGuardExpr>, Box<StaticGuardExpr>)
Not(Box<StaticGuardExpr>)
CompOp(CompGuard)
Atom(Atom)
StaticInfo((u64, u64))
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for StaticGuardExpr
impl Send for StaticGuardExpr
impl Sync for StaticGuardExpr
impl Unpin for StaticGuardExpr
impl UnwindSafe for StaticGuardExpr
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more