Trait malwaredb_types::exec::ExecutableFile
source · pub trait ExecutableFile {
// Required methods
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) -> Option<&Vec<Section<'_>>>;
}