Home
last modified time | relevance | path

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

/rust/kernel/
A Drbtree.rs246 pub fn cursor_front(&mut self) -> Option<Cursor<'_, K, V>> { in cursor_front()
253 Cursor { in cursor_front()
261 pub fn cursor_back(&mut self) -> Option<Cursor<'_, K, V>> { in cursor_back()
268 Cursor { in cursor_back()
424 pub fn cursor_lower_bound(&mut self, key: &K) -> Option<Cursor<'_, K, V>> in cursor_lower_bound()
473 Cursor { in cursor_lower_bound()
729 pub struct Cursor<'a, K, V> { struct
737 unsafe impl<'a, K: Send, V: Send> Send for Cursor<'a, K, V> {} implementation
741 unsafe impl<'a, K: Sync, V: Sync> Sync for Cursor<'a, K, V> {} implementation
743 impl<'a, K, V> Cursor<'a, K, V> { implementation
A Dlist.rs599 pub fn cursor_front(&mut self) -> Cursor<'_, T, ID> { in cursor_front()
601 Cursor { in cursor_front()
608 pub fn cursor_back(&mut self) -> Cursor<'_, T, ID> { in cursor_back()
610 Cursor { in cursor_back()
825 pub struct Cursor<'a, T: ?Sized + ListItem<ID>, const ID: u64 = 0> { struct
831 impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> Cursor<'a, T, ID> { argument
982 cursor: &'a mut Cursor<'b, T, ID>,

Completed in 9 milliseconds