True for sections that hold executable machine code.
(&self)
| 31 | |
| 32 | /// True for sections that hold executable machine code. |
| 33 | pub fn is_executable(&self) -> bool { |
| 34 | matches!(self, Self::Text) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | /// Accumulated bytes and local symbol table for one section. |
no outgoing calls
no test coverage detected