elf_loader 0.16.0

A no_std-friendly ELF loader and runtime linker for Rust.
Documentation
1
2
3
4
5
6
7
//! Runtime execution abstractions for mapped images.

mod native;
mod traits;

pub use native::NativeCodeExecutor;
pub use traits::{CodeContext, CodeExecutor};