(&self)
| 24 | pub struct NativePull<'js>(pub Rc<NativePullFn<'js>>); |
| 25 | impl<'js> Clone for NativePull<'js> { |
| 26 | fn clone(&self) -> Self { |
| 27 | Self(self.0.clone()) |
| 28 | } |
| 29 | } |
| 30 | unsafe impl<'js> JsLifetime<'js> for NativePull<'js> { |
| 31 | type Changed<'to> = NativePull<'to>; |
no outgoing calls
no test coverage detected