| 100 | #[derive(Clone)] |
| 101 | #[repr(C)] |
| 102 | pub struct PeMetadata { |
| 103 | pub pe: u32, |
| 104 | pub is_32_bit: bool, |
| 105 | pub image_file_header: IMAGE_FILE_HEADER, |
| 106 | pub opt_header_32: IMAGE_OPTIONAL_HEADER32, |
| 107 | pub opt_header_64: IMAGE_OPTIONAL_HEADER64, |
| 108 | pub sections: Vec<IMAGE_SECTION_HEADER> |
| 109 | } |
| 110 | |
| 111 | impl Default for PeMetadata { |
| 112 | fn default() -> PeMetadata { |
nothing calls this directly
no outgoing calls
no test coverage detected