pub struct Entry<'a, T: Ord, V> { /* private fields */ }Expand description
A find query on the interval tree does not directly return references to the nodes in the tree, but
wraps the fields interval and data in an Entry.
Implementations§
Trait Implementations§
impl<'a, T: Eq + Ord, V: Eq> Eq for Entry<'a, T, V>
impl<'a, T: Ord, V> StructuralPartialEq for Entry<'a, T, V>
Auto Trait Implementations§
impl<'a, T, V> Freeze for Entry<'a, T, V>
impl<'a, T, V> RefUnwindSafe for Entry<'a, T, V>where
V: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, V> !Send for Entry<'a, T, V>
impl<'a, T, V> !Sync for Entry<'a, T, V>
impl<'a, T, V> Unpin for Entry<'a, T, V>
impl<'a, T, V> UnwindSafe for Entry<'a, T, V>where
V: RefUnwindSafe,
T: RefUnwindSafe,
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