1
2
3
4

pub fn s<S>(string: S) -> String where S: Into<String> {
    string.into()
}