pub struct Entry<I: Id, V: Val> {
pub id: I,
pub val: V,
}
Fields§
§id: I
Row identifier
val: V
Indexed value
Trait Implementations§
Source§impl<I: Id, V: Val> Ord for Entry<I, V>
impl<I: Id, V: Val> Ord for Entry<I, V>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<I: Id, V: Val> PartialOrd for Entry<I, V>
impl<I: Id, V: Val> PartialOrd for Entry<I, V>
impl<I: Id, V> Eq for Entry<I, V>
Auto Trait Implementations§
impl<I, V> Freeze for Entry<I, V>
impl<I, V> RefUnwindSafe for Entry<I, V>where
I: RefUnwindSafe,
V: RefUnwindSafe,
impl<I, V> Send for Entry<I, V>
impl<I, V> Sync for Entry<I, V>
impl<I, V> Unpin for Entry<I, V>
impl<I, V> UnwindSafe for Entry<I, V>where
I: UnwindSafe,
V: UnwindSafe,
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