An attribute for replace reference parameter &T
to impl AsRef<T>
```rs use autoref::autoref;
fn example(s: &str) { println!("{}", s); } ```
The above code is convert to
rs
fn example(s: impl ::code::convert::AsRef<str>) {
let s = s.as_ref();
println!("{}", s);
}