1use super::*;
2
3impl std::fmt::Debug for GenericParam {
4 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
5 f.debug_tuple(name:"GenericParam").field(&self.name()).finish()
6 }
7}
8
9impl GenericParam {
10 pub fn name(&self) -> &'static str {
11 self.str(column:3)
12 }
13}
14