I have this URL as a String: "http://blah.com/a/b?a=1&b=2".
How can I remove or replace the GET parameter for b or strip the parameters entirely using Rust?
The ParseOptions of the rust-url package doesn't seem to give me anything for this.
Am I just limited to using String methods to find/replace?