1use super::*;
2
3impl std::fmt::Debug for TypeSpec {
4 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
5 f.debug_tuple(name:"TypeSpec").field(&self.0).finish()
6 }
7}
8