pub struct DeobfuscationFile {
pub symbol_type: Option<String>,
}Expand description
Represents a deobfuscation file.
This type is not used in any activity, and only used as part of another schema.
Fields§
§symbol_type: Option<String>The type of the deobfuscation file.
Trait Implementations§
Source§impl Clone for DeobfuscationFile
impl Clone for DeobfuscationFile
Source§fn clone(&self) -> DeobfuscationFile
fn clone(&self) -> DeobfuscationFile
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 DeobfuscationFile
impl Debug for DeobfuscationFile
Source§impl Default for DeobfuscationFile
impl Default for DeobfuscationFile
Source§fn default() -> DeobfuscationFile
fn default() -> DeobfuscationFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeobfuscationFile
impl<'de> Deserialize<'de> for DeobfuscationFile
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
Source§impl Serialize for DeobfuscationFile
impl Serialize for DeobfuscationFile
impl Part for DeobfuscationFile
Auto Trait Implementations§
impl Freeze for DeobfuscationFile
impl RefUnwindSafe for DeobfuscationFile
impl Send for DeobfuscationFile
impl Sync for DeobfuscationFile
impl Unpin for DeobfuscationFile
impl UnwindSafe for DeobfuscationFile
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