(&self, ucs: &[Self])
| 17 | |
| 18 | impl UintConstructor { |
| 19 | pub fn construct_all(&self, ucs: &[Self]) -> (TokenStream, TokenStream) { |
| 20 | self.clear(); |
| 21 | |
| 22 | self.define_kernel(); |
| 23 | |
| 24 | self.impl_traits_std_default(); |
| 25 | self.defun_pub_basic(); |
| 26 | |
| 27 | self.impl_traits_std_cmp(); |
| 28 | self.defun_priv_ops(); |
| 29 | self.impl_traits_std_ops(); |
| 30 | self.defun_pub_math(); |
| 31 | |
| 32 | self.defun_priv_conv(); |
| 33 | self.defun_pub_conv(); |
| 34 | self.impl_traits_std_convert(); |
| 35 | |
| 36 | self.defun_as_prim(); |
| 37 | self.impl_traits_std_fmt(); |
| 38 | self.impl_traits_std_hash(); |
| 39 | self.impl_traits_std_iter(); |
| 40 | |
| 41 | self.with_rand(); |
| 42 | self.with_heapsize(); |
| 43 | self.with_serde(); |
| 44 | |
| 45 | self.output(ucs) |
| 46 | } |
| 47 | } |
no test coverage detected