Initial commit

This commit is contained in:
Maurice
2024-08-15 22:09:53 +02:00
commit 4ed19f9198
9 changed files with 1348 additions and 0 deletions

8
src/tree_node.rs Normal file
View File

@@ -0,0 +1,8 @@
#[derive(Clone)]
pub struct TreeNode<T>
where
T: Clone,
{
pub value: T,
pub is_expired: bool,
}