ps_hash/implementations/as_ref/
str.rs

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