pub struct OccupiedEntry<'a, T, V, Ix> {
pub map_ref: &'a mut IntervalMap<T, V, Ix>,
pub node_idx: NodeIndex<Ix>,
}Expand description
A view into an occupied entry in a IntervalMap.
It is part of the Entry enum.
Fields§
§map_ref: &'a mut IntervalMap<T, V, Ix>Reference to the map
node_idx: NodeIndex<Ix>The entry node
Trait Implementations§
Auto Trait Implementations§
impl<'a, T, V, Ix> Freeze for OccupiedEntry<'a, T, V, Ix>where
Ix: Freeze,
impl<'a, T, V, Ix> RefUnwindSafe for OccupiedEntry<'a, T, V, Ix>
impl<'a, T, V, Ix> Send for OccupiedEntry<'a, T, V, Ix>
impl<'a, T, V, Ix> Sync for OccupiedEntry<'a, T, V, Ix>
impl<'a, T, V, Ix> Unpin for OccupiedEntry<'a, T, V, Ix>where
Ix: Unpin,
impl<'a, T, V, Ix> !UnwindSafe for OccupiedEntry<'a, T, V, Ix>
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