(&self)
| 807 | /// InstancePre's clone does not require T: Clone |
| 808 | impl<T> Clone for InstancePre<T> { |
| 809 | fn clone(&self) -> Self { |
| 810 | Self { |
| 811 | module: self.module.clone(), |
| 812 | items: self.items.clone(), |
| 813 | host_funcs: self.host_funcs, |
| 814 | func_refs: self.func_refs.clone(), |
| 815 | asyncness: self.asyncness, |
| 816 | _marker: self._marker, |
| 817 | } |
| 818 | } |
| 819 | } |
| 820 | |
| 821 | impl<T: 'static> InstancePre<T> { |
no outgoing calls
no test coverage detected