mirror of
https://github.com/martinvonz/jj.git
synced 2025-05-29 02:51:12 +00:00
I'd like to be able to pass a `self` of `type `&ReadonlyRepo` to functions that take a `&dyn Repo`. For that, we need `ReadonlyRepo` itself to implement `Repo` instead of having `Arc<ReadonlyRepo>` implement it. I could have solved it in a different way, but the `Arc` requirement seems like an unnecessary constraint.