ps_hash/implementations/
debug.rs

1use std::fmt::{Debug, Display};
2
3use crate::Hash;
4
5impl Debug for Hash {
6    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
7        Display::fmt(&self, f)
8    }
9}