pub enum Lowering {
Group(Step),
Hand(&'static str),
}Expand description
What rewrites an operation before the selector sees it.
Variants§
Group(Step)
A member of the pre-selection group, which says for itself which opcodes it is about.
Hand(&'static str)
A place a rule cannot reach and a pass cannot be asked about, and what it does there.
Implementations§
Trait Implementations§
impl Copy for Lowering
impl Eq for Lowering
impl StructuralPartialEq for Lowering
Auto Trait Implementations§
impl Freeze for Lowering
impl RefUnwindSafe for Lowering
impl Send for Lowering
impl Sync for Lowering
impl Unpin for Lowering
impl UnsafeUnpin for Lowering
impl UnwindSafe for Lowering
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