pub struct HttpObfuscation {
pub remove_paths_with_digits: bool,
pub remove_query_string: bool,
}Expand description
HTTP path/query obfuscation.
Fields§
§remove_paths_with_digits: boolWhether path segments containing digits are removed.
remove_query_string: boolWhether the query string is removed.
Trait Implementations§
Source§impl Clone for HttpObfuscation
impl Clone for HttpObfuscation
Source§fn clone(&self) -> HttpObfuscation
fn clone(&self) -> HttpObfuscation
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 HttpObfuscation
impl Debug for HttpObfuscation
Source§impl Default for HttpObfuscation
impl Default for HttpObfuscation
Source§fn default() -> HttpObfuscation
fn default() -> HttpObfuscation
Returns the “default value” for a type. Read more
Source§impl PartialEq for HttpObfuscation
impl PartialEq for HttpObfuscation
Source§impl Serialize for HttpObfuscation
impl Serialize for HttpObfuscation
impl StructuralPartialEq for HttpObfuscation
Auto Trait Implementations§
impl Freeze for HttpObfuscation
impl RefUnwindSafe for HttpObfuscation
impl Send for HttpObfuscation
impl Sync for HttpObfuscation
impl Unpin for HttpObfuscation
impl UnwindSafe for HttpObfuscation
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