Struct move_bytecode_utils::module_cache::SyncModuleCache
source · [−]pub struct SyncModuleCache<R: ModuleResolver> { /* private fields */ }
Expand description
Simple in-memory module cache that implements Sync
Implementations
sourceimpl<R: ModuleResolver> SyncModuleCache<R>
impl<R: ModuleResolver> SyncModuleCache<R>
Trait Implementations
sourceimpl<R: ModuleResolver> GetModule for SyncModuleCache<R>
impl<R: ModuleResolver> GetModule for SyncModuleCache<R>
type Error = Error
type Item = Arc<CompiledModule>
fn get_module_by_id(
&self,
id: &ModuleId
) -> Result<Option<Arc<CompiledModule>>, Self::Error>
Auto Trait Implementations
impl<R> RefUnwindSafe for SyncModuleCache<R> where
R: RefUnwindSafe,
impl<R> Send for SyncModuleCache<R> where
R: Send,
impl<R> Sync for SyncModuleCache<R> where
R: Sync,
impl<R> Unpin for SyncModuleCache<R> where
R: Unpin,
impl<R> UnwindSafe for SyncModuleCache<R> where
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more