浏览代码

start on recycling policy

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Eliza Weisman 3 年之前
父节点
当前提交
b21895a450
共有 2 个文件被更改,包括 26 次插入0 次删除
  1. 1 0
      src/lib.rs
  2. 25 0
      src/recycle.rs

+ 1 - 0
src/lib.rs

@@ -7,6 +7,7 @@ use core::{cmp, fmt, mem::MaybeUninit, ops, ptr};
 mod macros;
 
 mod loom;
+mod recycle;
 mod util;
 mod wait;
 

+ 25 - 0
src/recycle.rs

@@ -0,0 +1,25 @@
+pub trait Recycle<T> {
+    /// Returns a new instance of type `T`.
+    fn new_element(&self) -> T;
+
+    /// Resets `element` in place.
+    ///
+    /// Typically, this retains any previous allocations.
+    fn recycle(&self, element: &mut T);
+}
+
+#[derive(Debug, Default)]
+pub struct DefaultRecycle(());
+
+impl<T> Recycle<T> for DefaultRecycle
+where
+    T: Default + Clone,
+{
+    fn new_element(&self) -> T {
+        T::default()
+    }
+
+    fn recycle(&self, element: &mut T) {
+        element.clone_from(&T::default())
+    }
+}