Currently, RA (Rust Analyzer) does not display `Trait Bound` in the function signature hints. ```rust fn test<R: std::io::Read>(r: R) {} fn test1<R>(r: R) where R: std::io::Read {} ``` Current: (`where R: std::io::Read` not show)  Expected: Show `Trait Bound` just like hover 