| 120 | /// Node proxy, like jQuery |
| 121 | #[derive(Copy, Clone)] |
| 122 | pub struct NodeQuery<K, V> { |
| 123 | pub node: Option<NonNull<Node<K, V>>>, |
| 124 | } |
| 125 | |
| 126 | impl<'a, K: 'a, V: 'a> NodeQuery<K, V> { |
| 127 | pub fn new(node: Option<NonNull<Node<K, V>>>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected