pub enum InterpreterFunctionRef<'a> {
    Function(&'a Function),
    LibCall(LibCall),
}Variants§
Implementations§
Trait Implementations§
source§impl<'a> From<&'a Function> for InterpreterFunctionRef<'a>
 
impl<'a> From<&'a Function> for InterpreterFunctionRef<'a>
Auto Trait Implementations§
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