Home
last modified time | relevance | path

Searched defs:K (Results 1 – 2 of 2) sorted by relevance

/DragonOS/kernel/src/libs/
H A Drbtree.rs45 fn pair(self) -> (K, V) { in pair()
65 fn clone(&self) -> NodePtr<K, V> { in clone()
73 fn cmp(&self, other: &NodePtr<K, V>) -> Ordering { in cmp()
79 fn partial_cmp(&self, other: &NodePtr<K, V>) -> Option<Ordering> { in partial_cmp()
85 fn eq(&self, other: &NodePtr<K, V>) -> bool { in eq()
93 fn new(k: K, v: V) -> NodePtr<K, V> { in new()
160 fn min_node(self) -> NodePtr<K, V> { in min_node()
169 fn max_node(self) -> NodePtr<K, V> { in max_node()
178 fn next(self) -> NodePtr<K, V> { in next()
196 fn prev(self) -> NodePtr<K, V> { in prev()
[all …]
/DragonOS/tools/debugging/logmonitor/src/backend/monitor/
H A Dlogset.rs24 pub fn new(name: String, backend: Option<Box<dyn LogSetBackend<K, V>>>) -> Self { in new()
39 pub fn insert(&mut self, key: K, value: V) { in insert()