pub struct BorrowedEntry<'a, R, C, W> {
pub row: &'a R,
pub column: &'a C,
pub weight: &'a W,
}
Fields§
§row: &'a R
§column: &'a C
§weight: &'a W
Trait Implementations§
Source§impl<'a, R, C, W> Clone for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> Clone for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> Copy for BorrowedEntry<'a, R, C, W>
impl<'a, R: Eq, C: Eq, W: Eq> Eq for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> StructuralPartialEq for BorrowedEntry<'a, R, C, W>
Auto Trait Implementations§
impl<'a, R, C, W> Freeze for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> RefUnwindSafe for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> Send for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> Sync for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> Unpin for BorrowedEntry<'a, R, C, W>
impl<'a, R, C, W> UnwindSafe for BorrowedEntry<'a, R, C, W>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.