(&self, ty: &str, variant: &str)
| 138 | } |
| 139 | |
| 140 | fn enumerate_v(&self, ty: &str, variant: &str) -> Bytes { |
| 141 | let mut msg = Bytes::new(); |
| 142 | msg.identifier(ty); |
| 143 | msg.identifier(variant); |
| 144 | msg.push_str("enum"); |
| 145 | msg |
| 146 | } |
| 147 | |
| 148 | fn unit_v(&self) -> Bytes { |
| 149 | let mut msg = Bytes::new(); |
no test coverage detected