You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.fninto_objects(self) -> (Option<Object<'repo>>,Option<Object<'repo>>);}
This would be useful for when you want to collect all the commits into a Vec.
The text was updated successfully, but these errors were encountered:
It is currently not possible to extract the
Object
s from aRevspec
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.
This would be useful for when you want to collect all the commits into a
Vec
.The text was updated successfully, but these errors were encountered: