pub struct ObfuscationConfig {
pub level: ObfuscationLevel,
pub retain_mapping: bool,
pub hash_salt: Option<String>,
pub strip_string_constants: bool,
pub strip_error_messages: bool,
pub strip_metadata: bool,
}Fields§
§level: ObfuscationLevel§retain_mapping: bool§hash_salt: Option<String>§strip_string_constants: bool§strip_error_messages: bool§strip_metadata: boolImplementations§
Trait Implementations§
Source§impl Clone for ObfuscationConfig
impl Clone for ObfuscationConfig
Source§fn clone(&self) -> ObfuscationConfig
fn clone(&self) -> ObfuscationConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ObfuscationConfig
impl Debug for ObfuscationConfig
Source§impl Default for ObfuscationConfig
impl Default for ObfuscationConfig
Source§impl<'de> Deserialize<'de> for ObfuscationConfig
impl<'de> Deserialize<'de> for ObfuscationConfig
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 ObfuscationConfig
impl RefUnwindSafe for ObfuscationConfig
impl Send for ObfuscationConfig
impl Sync for ObfuscationConfig
impl Unpin for ObfuscationConfig
impl UnsafeUnpin for ObfuscationConfig
impl UnwindSafe for ObfuscationConfig
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