#[non_exhaustive]pub enum PolyExtStep {
Const(u32),
ConstExt(u32, u32, u32, u32),
Get(usize),
GetGlobal(Arg, usize),
Add(Var, Var),
Sub(Var, Var),
Mul(Var, Var),
True,
AndEqz(Var, Var),
AndCond(Var, Var, Var),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Const(u32)
ConstExt(u32, u32, u32, u32)
Get(usize)
GetGlobal(Arg, usize)
Add(Var, Var)
Sub(Var, Var)
Mul(Var, Var)
True
AndEqz(Var, Var)
AndCond(Var, Var, Var)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PolyExtStep
impl RefUnwindSafe for PolyExtStep
impl Send for PolyExtStep
impl Sync for PolyExtStep
impl Unpin for PolyExtStep
impl UnwindSafe for PolyExtStep
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