pub struct BridgeCodeCache { /* private fields */ }Expand description
Cached V8 code cache data for bridge code compilation.
Stores the compiled bytecode from V8’s ScriptCompiler::CreateCodeCache along with a hash of the source for invalidation. On subsequent compilations with the same bridge code, the cache is consumed via CompileOptions::ConsumeCodeCache, skipping parsing and initial compilation.
Auto Trait Implementations§
impl Freeze for BridgeCodeCache
impl RefUnwindSafe for BridgeCodeCache
impl Send for BridgeCodeCache
impl Sync for BridgeCodeCache
impl Unpin for BridgeCodeCache
impl UnsafeUnpin for BridgeCodeCache
impl UnwindSafe for BridgeCodeCache
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