Struct store_interval_tree::EntryMut
source · [−]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
sourceimpl<'a, T: PartialEq + Ord, V: PartialEq> PartialEq<EntryMut<'a, T, V>> for EntryMut<'a, T, V>
impl<'a, T: PartialEq + Ord, V: PartialEq> PartialEq<EntryMut<'a, T, V>> for EntryMut<'a, T, V>
impl<'a, T: Eq + Ord, V: Eq> Eq for EntryMut<'a, T, V>
impl<'a, T: Ord, V> StructuralEq for EntryMut<'a, T, V>
impl<'a, T: Ord, V> StructuralPartialEq for EntryMut<'a, T, V>
Auto Trait Implementations
impl<'a, T, V> RefUnwindSafe for EntryMut<'a, T, V>where
T: RefUnwindSafe,
V: 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more