pub fn encode_component_to_string<S: AsRef<str>>(
    text: S,
    output: &mut String
) -> &str
Expand description

Write text used in a component to a mutable String reference and return the encoded string slice.

The following characters are escaped:

C0 controls and,

  • SPACE
  • "
  • #
  • $
  • %
  • &
  • +
  • ,
  • /
  • :
  • ;
  • <
  • =
  • >
  • ?
  • @
  • [
  • \
  • ]
  • ^
  • `
  • {
  • }
  • |

and all code points greater than ~ (U+007E) are escaped.

It gives identical results to JavaScript’s encodeURIComponent().