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 ![]()