mbrobbel commented on code in PR #2736: URL: https://github.com/apache/arrow-adbc/pull/2736#discussion_r2056443832
########## rust/core/src/driver_manager.rs: ########## @@ -164,7 +164,7 @@ struct ManagedDriverInner { /// Implementation of [Driver]. #[derive(Clone)] pub struct ManagedDriver { - inner: Arc<ManagedDriverInner>, + inner: Pin<Arc<ManagedDriverInner>>, Review Comment: I don't think `Pin` helps here with that? `ManagedDriverInner` implements [`Unpin`](https://doc.rust-lang.org/stable/std/marker/trait.Unpin.html). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org