pub trait GetModule {
    type Error: Debug;
    type Item: Borrow<CompiledModule>;
    fn get_module_by_id(
        &self,
        id: &ModuleId
    ) -> Result<Option<Self::Item>, Self::Error>; }
Expand description

A persistent storage that can fetch the bytecode for a given module id TODO: do we want to implement this in a way that allows clients to cache struct layouts?

Associated Types

Required methods

Implementors