pub struct DllReadConfig {
pub assembly_ref_fallback_names: Vec<String>,
}Expand description
Configuration for lazy .NET PE file reading.
This struct provides configuration options for reading and parsing .NET assembly files:
- Checking if a file is a valid .NET assembly
- Parsing CLR headers and metadata
- Extracting basic assembly information
- Validating assembly integrity
- Supporting both lazy reading and full parsing modes
Fields§
§assembly_ref_fallback_names: Vec<String>Fallback assembly reference names when the original cannot be resolved.
Trait Implementations§
Source§impl Clone for DllReadConfig
impl Clone for DllReadConfig
Source§fn clone(&self) -> DllReadConfig
fn clone(&self) -> DllReadConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DllReadConfig
impl Debug for DllReadConfig
Auto Trait Implementations§
impl Freeze for DllReadConfig
impl RefUnwindSafe for DllReadConfig
impl Send for DllReadConfig
impl Sync for DllReadConfig
impl Unpin for DllReadConfig
impl UnsafeUnpin for DllReadConfig
impl UnwindSafe for DllReadConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more