pub struct MachoReadConfig {
pub include_sections: bool,
pub parse_symbols: bool,
pub parse_dylibs: bool,
}Expand description
Mach-O 读取配置
Fields§
§include_sections: bool是否包含节数据
parse_symbols: bool是否解析符号表
parse_dylibs: bool是否解析动态库
Trait Implementations§
Source§impl Clone for MachoReadConfig
impl Clone for MachoReadConfig
Source§fn clone(&self) -> MachoReadConfig
fn clone(&self) -> MachoReadConfig
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 MachoReadConfig
impl Debug for MachoReadConfig
Source§impl Default for MachoReadConfig
impl Default for MachoReadConfig
impl Copy for MachoReadConfig
Auto Trait Implementations§
impl Freeze for MachoReadConfig
impl RefUnwindSafe for MachoReadConfig
impl Send for MachoReadConfig
impl Sync for MachoReadConfig
impl Unpin for MachoReadConfig
impl UnsafeUnpin for MachoReadConfig
impl UnwindSafe for MachoReadConfig
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