what2watch/src/util.rs

4 lines
153 B
Rust
Raw Normal View History

2023-05-29 00:55:16 +00:00
pub fn form_decode<E: std::error::Error>(input: &str, err: E) -> Result<String, E> {
Ok(urlencoding::decode(input).map_err(|_| err)?.into_owned())
}