Initial commit
This commit is contained in:
8
src/tree_node.rs
Normal file
8
src/tree_node.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
#[derive(Clone)]
|
||||
pub struct TreeNode<T>
|
||||
where
|
||||
T: Clone,
|
||||
{
|
||||
pub value: T,
|
||||
pub is_expired: bool,
|
||||
}
|
||||
Reference in New Issue
Block a user