Encode a string to application/x-www-form-urlencoded format. # Arguments `value` - The string to encode # Returns `Ok(String)` - The encoded string
(value: &str)
| 58 | /// * `Ok(String)` - The encoded string |
| 59 | /// |
| 60 | fn encode(value: &str) -> Result<String> { |
| 61 | Ok(byte_serialize(value.as_bytes()).collect::<String>()) |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | impl ScalarUDFImpl for UrlEncode { |
no outgoing calls