(&self)
| 16 | |
| 17 | impl UintConstructor { |
| 18 | pub fn define_kernel(&self) { |
| 19 | self.defun_priv_kernel(); |
| 20 | self.defun_pub_kernel(); |
| 21 | self.deftrait_uint_convert(); |
| 22 | } |
| 23 | |
| 24 | pub fn convert_into(&self, uc: &Self) -> TokenStream { |
| 25 | let this_name = &self.ts.name; |
no test coverage detected