pub enum RemoveQueryParametersOptions {
None,
All,
List(Vec<Regex>),
}
Expand description
Controls whether query parameters will be removed.
Variants§
None
No query parameters will be removed.
All
All query parameters will be removed.
List(Vec<Regex>)
Only query parameters matching provided regular expressions will be removed.
Trait Implementations§
Source§impl Clone for RemoveQueryParametersOptions
impl Clone for RemoveQueryParametersOptions
Source§fn clone(&self) -> RemoveQueryParametersOptions
fn clone(&self) -> RemoveQueryParametersOptions
Returns a copy 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 RemoveQueryParametersOptions
impl RefUnwindSafe for RemoveQueryParametersOptions
impl Send for RemoveQueryParametersOptions
impl Sync for RemoveQueryParametersOptions
impl Unpin for RemoveQueryParametersOptions
impl UnwindSafe for RemoveQueryParametersOptions
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