enum WrappedFunction {
    BinaryOp {
        op: BinaryOperator,
        left_type_id: Word,
        right_type_id: Word,
    },
}Expand description
Key used to look up an operation which we have wrapped in a helper
function, which should be called instead of directly emitting code
for the expression. See Writer::wrapped_functions.
Variants§
Trait Implementations§
Source§impl Debug for WrappedFunction
 
impl Debug for WrappedFunction
Source§impl Hash for WrappedFunction
 
impl Hash for WrappedFunction
Source§impl PartialEq for WrappedFunction
 
impl PartialEq for WrappedFunction
impl Eq for WrappedFunction
impl StructuralPartialEq for WrappedFunction
Auto Trait Implementations§
impl Freeze for WrappedFunction
impl RefUnwindSafe for WrappedFunction
impl Send for WrappedFunction
impl Sync for WrappedFunction
impl Unpin for WrappedFunction
impl UnwindSafe for WrappedFunction
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
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.