pub struct JITFunctionImpl { /* private fields */ }
Expand description
A compiled JIT function
Implementations§
Trait Implementations§
Source§impl Debug for JITFunctionImpl
impl Debug for JITFunctionImpl
Source§impl JITFunction for JITFunctionImpl
impl JITFunction for JITFunctionImpl
Source§fn evaluate(&self, args: &[Box<dyn Any>]) -> CoreResult<Box<dyn Any>>
fn evaluate(&self, args: &[Box<dyn Any>]) -> CoreResult<Box<dyn Any>>
Evaluate the function with the given arguments.
Source§fn compile_info(&self) -> HashMap<String, String>
fn compile_info(&self) -> HashMap<String, String>
Get information about how the function was compiled.
Source§fn clone_box(&self) -> Box<dyn JITFunction>
fn clone_box(&self) -> Box<dyn JITFunction>
Clone this JIT function into a
Box<dyn JITFunction>
.Auto Trait Implementations§
impl Freeze for JITFunctionImpl
impl !RefUnwindSafe for JITFunctionImpl
impl Send for JITFunctionImpl
impl Sync for JITFunctionImpl
impl Unpin for JITFunctionImpl
impl !UnwindSafe for JITFunctionImpl
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more