stefans_utils/string/
as_str.rs

1use crate::as_str::AsStr;
2
3impl AsStr for String {
4    fn as_str(&self) -> &str {
5        self
6    }
7}