pub struct DllReadConfig {
pub assembly_ref_fallback_names: Vec<String>,
}Expand description
.NET PE 文件惰性读取器
该类负责读取和解析 .NET 程序集文件,提供以下功能:
- 检查文件是否为有效的 .NET 程序集
- 解析 CLR 头和元数据
- 提取程序集的基本信息
- 验证程序集的完整性
- 支持惰性读取和完整解析两种模式
Fields§
§assembly_ref_fallback_names: Vec<String>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 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