pub struct Entry<'a, T: Ord, V> {
pub value: &'a V,
pub interval: &'a Interval<T>,
}Fields§
§value: &'a V§interval: &'a Interval<T>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