ps_rwt/implementations/
debug.rs

1use std::fmt::Debug;
2
3use crate::RWT;
4
5impl<R, W> Debug for RWT<R, W>
6where
7    R: Debug,
8    W: Debug,
9{
10    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
11        Debug::fmt(&self.inner, f)
12    }
13}