usesuper::abi::{ElfAbi, Abi};usesuper::endian::{ElfEndian, Endian};usesuper::class::{ElfClass, Class};/// Elf Magic Number information
////// A lot of data is packed into the first 16bytes
/// of an ElfFile.
////// This provides a simple way to extract it.
pubtraitElfMagicNumber: Abi + Endian + Class {/// Get the specific version of ABI
////// This field is ABI and Platform specific, so its
/// values are not standardized, so no enum.
fnget_abi_version(&self)->u8;}