rune_alloc::hashbrown

Struct TupleFn

Source
pub struct TupleFn<T, V> { /* private fields */ }
Expand description

Adapter for HasherFn for hashing tuples.

Trait Implementations§

Source§

impl<T, C: ?Sized, K, V, E> EqFn<C, (K, V), E> for TupleFn<T, V>
where T: EqFn<C, K, E>,

Source§

fn eq(&self, cx: &mut C, (key, _): &(K, V)) -> Result<bool, E>

Source§

impl<T, C: ?Sized, K, V, E> HasherFn<C, (K, V), E> for TupleFn<T, V>
where T: HasherFn<C, K, E>,

Source§

fn hash(&self, cx: &mut C, (key, _): &(K, V)) -> Result<u64, E>

Auto Trait Implementations§

§

impl<T, V> Freeze for TupleFn<T, V>
where T: Freeze,

§

impl<T, V> RefUnwindSafe for TupleFn<T, V>

§

impl<T, V> Send for TupleFn<T, V>
where T: Send, V: Send,

§

impl<T, V> Sync for TupleFn<T, V>
where T: Sync, V: Sync,

§

impl<T, V> Unpin for TupleFn<T, V>
where T: Unpin, V: Unpin,

§

impl<T, V> UnwindSafe for TupleFn<T, V>
where T: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.