pub struct JITConfig {
pub backend: JITBackend,
pub optimize: bool,
pub opt_level: usize,
pub use_cache: bool,
pub backend_options: HashMap<String, String>,
}
Expand description
Configuration for JIT compilation
Fields§
§backend: JITBackend
The JIT backend to use
optimize: bool
Whether to optimize the generated code
opt_level: usize
Optimization level (0-3)
use_cache: bool
Whether to cache compiled functions
backend_options: HashMap<String, String>
Additional backend-specific options
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JITConfig
impl RefUnwindSafe for JITConfig
impl Send for JITConfig
impl Sync for JITConfig
impl Unpin for JITConfig
impl UnwindSafe for JITConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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