pub struct ImportTable {
pub entries: Vec<ImportEntry>,
}Expand description
导入表结构
描述 PE 文件从外部 DLL 导入的函数信息
Fields§
§entries: Vec<ImportEntry>导入条目列表
Implementations§
Source§impl ImportTable
impl ImportTable
Trait Implementations§
Source§impl Clone for ImportTable
impl Clone for ImportTable
Source§fn clone(&self) -> ImportTable
fn clone(&self) -> ImportTable
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 ImportTable
impl Debug for ImportTable
Source§impl Default for ImportTable
impl Default for ImportTable
Source§impl<'de> Deserialize<'de> for ImportTable
impl<'de> Deserialize<'de> for ImportTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ImportTable
impl RefUnwindSafe for ImportTable
impl Send for ImportTable
impl Sync for ImportTable
impl Unpin for ImportTable
impl UnwindSafe for ImportTable
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