1 2 3 4 5 6 7
use crate::Debug; impl<const N: usize> Debug for cid::CidGeneric<N> { fn fmt(&self, f: &mut crate::Formatter) { f.debug_tuple("Cid").field(&self.to_string()).finish() } }