Adam Steinberg

Results 1 comments of Adam Steinberg

Ok I fixed it. TIL that `#[derive(Clone)]` will generate: ``` impl Clone for UseFutureHandle { fn clone(&self) -> Self { Self { inner: self.inner.clone(), } } } ``` instead of...