Quellcode durchsuchen

Add ElfSection::flags() method

Philipp Oppermann vor 9 Jahren
Ursprung
Commit
05c1cb03e6
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  1. 6 0
      src/elf_sections.rs

+ 6 - 0
src/elf_sections.rs

@@ -61,6 +61,12 @@ pub struct ElfSection {
     entry_size: u64,
 }
 
+impl ElfSection {
+    pub fn flags(&self) -> ElfSectionFlags {
+        ElfSectionFlags::from_bits_truncate(self.flags)
+    }
+}
+
 #[repr(u32)]
 pub enum ElfSectionType {
     Unused = 0,