pub struct DecodedContent {
pub original: String,
pub decoded: String,
pub encoding: String,
}Expand description
Represents decoded content from obfuscation
Fields§
§original: String§decoded: String§encoding: StringTrait Implementations§
Source§impl Clone for DecodedContent
impl Clone for DecodedContent
Source§fn clone(&self) -> DecodedContent
fn clone(&self) -> DecodedContent
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 moreAuto Trait Implementations§
impl Freeze for DecodedContent
impl RefUnwindSafe for DecodedContent
impl Send for DecodedContent
impl Sync for DecodedContent
impl Unpin for DecodedContent
impl UnwindSafe for DecodedContent
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