Trait elrond::Arch
[−]
[src]
pub trait Arch {
fn get_arch(&self) -> ElfArch;
fn is_none(&self) -> bool { ... }
fn is_intel386(&self) -> bool { ... }
fn is_motorola68k(&self) -> bool { ... }
fn is_motorola88k(&self) -> bool { ... }
fn is_intel486(&self) -> bool { ... }
fn is_intel860(&self) -> bool { ... }
fn is_powerpc(&self) -> bool { ... }
fn is_powerpc64(&self) -> bool { ... }
fn is_arm(&self) -> bool { ... }
fn is_itanium(&self) -> bool { ... }
fn is_amd64(&self) -> bool { ... }
fn is_aarch64(&self) -> bool { ... }
fn is_linux_bpf(&self) -> bool { ... }
fn is_open_risc(&self) -> bool { ... }
fn is_unknown(&self) -> bool { ... }
fn get_unknown(&self) -> Option<u16> { ... }
}
Required Methods
Provided Methods
fn is_none(&self) -> bool
fn is_intel386(&self) -> bool
fn is_motorola68k(&self) -> bool
fn is_motorola88k(&self) -> bool
fn is_intel486(&self) -> bool
fn is_intel860(&self) -> bool
fn is_powerpc(&self) -> bool
fn is_powerpc64(&self) -> bool
fn is_arm(&self) -> bool
fn is_itanium(&self) -> bool
fn is_amd64(&self) -> bool
fn is_aarch64(&self) -> bool
fn is_linux_bpf(&self) -> bool
fn is_open_risc(&self) -> bool
fn is_unknown(&self) -> bool
fn get_unknown(&self) -> Option<u16>
Implementors
impl Arch for ElfArchimpl<'a> Arch for ElfHeaderBase<'a>