pub fn url_encode_params(params: &str, buffer: &mut SmartString) -> Result<()>Expand description
URL-encode the provided parameter string using a pre-allocated buffer.
This performs zero-copy encoding to avoid unpredictable heap allocations on critical paths. Pure function for maximum performance.