From ef24de24a82fe681581cc130f342363c47c0969a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 7 Jun 2024 07:48:48 +0200 Subject: Merging upstream version 1.75.0+dfsg1. Signed-off-by: Daniel Baumann --- vendor/gix/src/object/commit.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'vendor/gix/src/object/commit.rs') diff --git a/vendor/gix/src/object/commit.rs b/vendor/gix/src/object/commit.rs index 1fb9eff67..bb2e3a99e 100644 --- a/vendor/gix/src/object/commit.rs +++ b/vendor/gix/src/object/commit.rs @@ -20,6 +20,7 @@ mod error { pub use error::Error; +/// Remove Lifetime impl<'repo> Commit<'repo> { /// Create an owned instance of this object, copying our data in the process. pub fn detached(&self) -> ObjectDetached { @@ -34,6 +35,13 @@ impl<'repo> Commit<'repo> { pub fn detach(self) -> ObjectDetached { self.into() } + + /// Retrieve this instance's encoded data, leaving its own data empty. + /// + /// This method works around the immovability of members of this type. + pub fn take_data(&mut self) -> Vec { + std::mem::take(&mut self.data) + } } impl<'repo> Commit<'repo> { -- cgit v1.2.3