1//! Common 2//! 3//! Collection of helper functions 4 5/// Serialize to application/x-www-form-urlencoded syntax 6pub fn urlencode<T: AsRef<str>>(s: T) -> String { 7 ::url::form_urlencoded::byte_serialize(s.as_ref().as_bytes()).collect() 8}