Trait elrond::prelude::FileType
[−]
[src]
pub trait FileType {
fn get_file_type(&self) -> ElfFileType;
fn is_none(&self) -> bool { ... }
fn is_relocatble(&self) -> bool { ... }
fn is_executable(&self) -> bool { ... }
fn is_shared(&self) -> bool { ... }
fn is_core(&self) -> bool { ... }
fn is_lo_os(&self) -> bool { ... }
fn is_hi_os(&self) -> bool { ... }
fn is_low_proc(&self) -> bool { ... }
fn is_hi_proc(&self) -> bool { ... }
fn is_unknown(&self) -> bool { ... }
fn get_unknown(&self) -> Option<u16> { ... }
}
Required Methods
fn get_file_type(&self) -> ElfFileType
Provided Methods
fn is_none(&self) -> bool
fn is_relocatble(&self) -> bool
fn is_executable(&self) -> bool
fn is_core(&self) -> bool
fn is_lo_os(&self) -> bool
fn is_hi_os(&self) -> bool
fn is_low_proc(&self) -> bool
fn is_hi_proc(&self) -> bool
fn is_unknown(&self) -> bool
fn get_unknown(&self) -> Option<u16>
Implementors
impl FileType for ElfFileTypeimpl<'a> FileType for ElfHeaderBase<'a>