Searched refs:NodePtr (Results 1 – 1 of 1) sorted by relevance
/DragonOS-0.1.8/kernel/src/libs/ |
D | rbtree.rs | 36 left: NodePtr<K, V>, 37 right: NodePtr<K, V>, 38 parent: NodePtr<K, V>, 62 struct NodePtr<K: Ord, V>(*mut RBTreeNode<K, V>); struct 64 impl<K: Ord, V> Clone for NodePtr<K, V> { implementation 65 fn clone(&self) -> NodePtr<K, V> { in clone() 66 NodePtr(self.0) in clone() 70 impl<K: Ord, V> Copy for NodePtr<K, V> {} implementation 72 impl<K: Ord, V> Ord for NodePtr<K, V> { implementation 73 fn cmp(&self, other: &NodePtr<K, V>) -> Ordering { in cmp() [all …]
|