Trait malwaredb_types::exec::ExecutableFile
source · pub trait ExecutableFile {
// Required methods
fn type_name(&self) -> String;
fn architecture(&self) -> &Architecture;
fn pointer_size(&self) -> usize;
fn operating_system(&self) -> &OperatingSystem;
fn compiled_timestamp(&self) -> Option<DateTime<Utc>>;
fn num_sections(&self) -> u32;
fn sections(&self) -> Result<&Sections<'_>>;
}