pub enum RemoveQueryParameters {
None,
All,
List(Vec<QueryFilter>),
}Expand description
Controls whether query parameters will be removed.
Variants§
None
No query parameters will be removed (disabled).
All
All query parameters will be removed.
List(Vec<QueryFilter>)
Only query parameters matching any of the provided filters will be removed.
Auto Trait Implementations§
impl Freeze for RemoveQueryParameters
impl !RefUnwindSafe for RemoveQueryParameters
impl !Send for RemoveQueryParameters
impl !Sync for RemoveQueryParameters
impl Unpin for RemoveQueryParameters
impl UnsafeUnpin for RemoveQueryParameters
impl !UnwindSafe for RemoveQueryParameters
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