Urlencode in Rust?

In Python, with the built-in urllib, I could simply encode URL parameter:

    >>> import urllib
    >>> f = { 'eventName' : 'myEvent', 'eventDescription' : 'cool event'}
    >>> urllib.urlencode(f)
   'eventName=myEvent&eventDescription=cool+event'

Is there something similar with urllib in rust-std, I have googled before, but I found nothing :frowning:

Took me a bit to find this example: Rust Playground

Encoding - Rust Cookbook Encoding and decoding example from the cookbook

thanks for your reply, I have solved my problem with you guys' help