blob: 387ab7f741095f07c50439ef36eda01e4116f8d0 [file] [log] [blame]
# use std::fmt;
pub struct Wrapping<T>(pub T);
impl<T: fmt::Debug> fmt::Debug for Wrapping<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}