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§
BinaryOp
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.