pub trait IntoGStr { // Required method fn run_with_gstr<T, F: FnOnce(&GStr) -> T>(self, f: F) -> T; }
A trait to accept both &str or &GStr as an argument.
&str
&GStr