elf_loader 0.14.0

A high-performance, no_std compliant ELF loader and JIT linker for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! ELF input abstraction and data sources.
//!
//! This module provides traits and implementations for accessing ELF data
//! from diverse sources, such as files in a filesystem or byte buffers in memory.
//! It abstracts the reading mechanism to allow the loader to operate
//! uniformly regardless of how the ELF data is stored.

pub use backend::{ElfBinary, ElfFile};
pub use traits::{ElfReader, IntoElfReader};

mod backend;
mod traits;