pub enum InterpreterFunctionRef<'a> {
Function(&'a Function),
LibCall(LibCall),
}
Variants§
Implementations§
Source§impl<'a> InterpreterFunctionRef<'a>
impl<'a> InterpreterFunctionRef<'a>
Trait Implementations§
Source§impl<'a> From<&'a Function> for InterpreterFunctionRef<'a>
impl<'a> From<&'a Function> for InterpreterFunctionRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for InterpreterFunctionRef<'a>
impl<'a> RefUnwindSafe for InterpreterFunctionRef<'a>
impl<'a> Send for InterpreterFunctionRef<'a>
impl<'a> Sync for InterpreterFunctionRef<'a>
impl<'a> Unpin for InterpreterFunctionRef<'a>
impl<'a> UnwindSafe for InterpreterFunctionRef<'a>
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