Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Revspec::into_objects #1147

Open
lolbinarycat opened this issue Mar 24, 2025 · 0 comments
Open

Add Revspec::into_objects #1147

lolbinarycat opened this issue Mar 24, 2025 · 0 comments

Comments

@lolbinarycat
Copy link

lolbinarycat commented Mar 24, 2025

It is currently not possible to extract the Objects from a Revspec without cloning, which is wasteful, since these are heap objects.

If this was a simple struct, you could just move out of the fields, but because it needs to be accessed through getter methods, this is not possible, and thus a separate method is needed.

impl<'repo> Revspec<'repo> {
  // RevparseMode is `Copy`, so it doesn't need to be returned in destructuring,
  // although maybe it should be for symmetry.
  fn into_objects(self) -> (Option<Object<'repo>>,  Option<Object<'repo>>);
}

This would be useful for when you want to collect all the commits into a Vec.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant