binkit 0.1.1

A modular toolbox for analyzing, disassembling, and patching binary formats
Documentation
1
2
3
4
5
6
7
8
9
pub trait BinaryPrinter {
    type Header;
    type ProgramHeader;
    type SectionHeader;

    fn print_header(&self, header: &Self::Header);
    fn print_program_headers(&self, phs: &[Self::ProgramHeader]);
    fn print_section_headers(&self, shs: &[Self::SectionHeader]);
}