Home
last modified time | relevance | path

Searched refs:NodePtr (Results 1 – 1 of 1) sorted by relevance

/DragonOS/kernel/src/libs/
H A Drbtree.rs36 left: NodePtr<K, V>,
37 right: NodePtr<K, V>,
38 parent: NodePtr<K, V>,
62 struct NodePtr<K: Ord + Debug, V: Debug>(*mut RBTreeNode<K, V>); struct
64 impl<K: Ord + Debug, V: Debug> Clone for NodePtr<K, V> { implementation
65 fn clone(&self) -> NodePtr<K, V> { in clone()
70 impl<K: Ord + Debug, V: Debug> Copy for NodePtr<K, V> {} implementation
72 impl<K: Ord + Debug, V: Debug> Ord for NodePtr<K, V> { implementation
73 fn cmp(&self, other: &NodePtr<K, V>) -> Ordering { in cmp()
78 impl<K: Ord + Debug, V: Debug> PartialOrd for NodePtr<K, V> { implementation
[all …]