(&self)
| 552 | |
| 553 | impl Clone for FrameLocals { |
| 554 | fn clone(&self) -> Self { |
| 555 | let cell = OnceCell::new(); |
| 556 | if let Some(locals) = self.inner.get() { |
| 557 | let _ = cell.set(locals.clone()); |
| 558 | } |
| 559 | Self { inner: cell } |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | unsafe impl Traverse for FrameLocals { |