ps_hash/implementations/into/
string.rs

1use crate::Hash;
2
3impl From<Hash> for String {
4    fn from(value: Hash) -> Self {
5        value.to_string()
6    }
7}
8
9impl From<&Hash> for String {
10    fn from(value: &Hash) -> Self {
11        value.to_string()
12    }
13}