pub struct BPQueueIterator<'a, T> {
pub bpq: &'a mut BPQueue<T>,
pub curkey: usize,
}Expand description
BPQueue iterator
Traverse the list from the first item. Usually it is safe to attach/detach list items during the iterator is active.
Fields§
§bpq: &'a mut BPQueue<T>§curkey: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for BPQueueIterator<'a, T>
impl<'a, T> RefUnwindSafe for BPQueueIterator<'a, T>where
T: RefUnwindSafe,
impl<'a, T> !Send for BPQueueIterator<'a, T>
impl<'a, T> !Sync for BPQueueIterator<'a, T>
impl<'a, T> Unpin for BPQueueIterator<'a, T>
impl<'a, T> !UnwindSafe for BPQueueIterator<'a, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more