stefans_utils/str/
as_str.rs

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