Module resources
Expand description
This module contains the different structures involved in the PE’s resource tree
One can access this tree using either: crate::pe::Binary::resources or by parsing raw bytes
with Node::from_slice. The Manager provides a logical API over the resource tree
to access specifics parts of the tree.
Structs§
- Data
- Directory
- Manager
- This manager abstracts the tree representation to provide a comprehensive API over the information wrapped by the resources tree.
Enums§
- Node
- This enum represents a node in the resource tree which can be either: a directory node or a data (leaf) node.
- Types
Traits§
- Node
Base - Trait that is shared by both
Node::DataandNode::Directory.