summaryrefslogtreecommitdiff
path: root/rust/alloc/vec/set_len_on_drop.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/alloc/vec/set_len_on_drop.rs')
-rw-r--r--rust/alloc/vec/set_len_on_drop.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/alloc/vec/set_len_on_drop.rs b/rust/alloc/vec/set_len_on_drop.rs
index 448bf5076a0b..d3c7297b80ec 100644
--- a/rust/alloc/vec/set_len_on_drop.rs
+++ b/rust/alloc/vec/set_len_on_drop.rs
@@ -20,6 +20,11 @@ impl<'a> SetLenOnDrop<'a> {
pub(super) fn increment_len(&mut self, increment: usize) {
self.local_len += increment;
}
+
+ #[inline]
+ pub(super) fn current_len(&self) -> usize {
+ self.local_len
+ }
}
impl Drop for SetLenOnDrop<'_> {