pub struct EntryMut<'a, T: Ord, V> { /* private fields */ }
Expand description
A find_mut
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 EntryMut
. Only the data part can be mutably accessed
using the data
method
Implementations§
Trait Implementations§
impl<'a, T: Eq + Ord, V: Eq> Eq for EntryMut<'a, T, V>
impl<'a, T: Ord, V> StructuralPartialEq for EntryMut<'a, T, V>
Auto Trait Implementations§
impl<'a, T, V> Freeze for EntryMut<'a, T, V>
impl<'a, T, V> RefUnwindSafe for EntryMut<'a, T, V>where
V: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, V> !Send for EntryMut<'a, T, V>
impl<'a, T, V> !Sync for EntryMut<'a, T, V>
impl<'a, T, V> Unpin for EntryMut<'a, T, V>
impl<'a, T, V> !UnwindSafe for EntryMut<'a, T, V>
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