pub struct CDModuleSettings {
pub ida_crasher: bool,
pub import_protection: bool,
pub fake_pdb_string: FakePdbString,
pub custom_section_name: CustomSectionName,
}Expand description
Global obfuscation settings for the module.
Fields§
§ida_crasher: boolWhether to crash the IDA decompiler intentionally.
import_protection: boolWhether to enable IAT/Import protection.
fake_pdb_string: FakePdbStringFake PDB string settings.
custom_section_name: CustomSectionNameCustom PE section name settings.
Trait Implementations§
Source§impl Debug for CDModuleSettings
impl Debug for CDModuleSettings
Source§impl<'de> Deserialize<'de> for CDModuleSettings
impl<'de> Deserialize<'de> for CDModuleSettings
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 CDModuleSettings
impl RefUnwindSafe for CDModuleSettings
impl Send for CDModuleSettings
impl Sync for CDModuleSettings
impl Unpin for CDModuleSettings
impl UnwindSafe for CDModuleSettings
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