Struct game_kernel_utils::MappedMap[][src]

pub struct MappedMap<K, V, N, M, F, FM> where
    M: MapAbstract<K, V>,
    F: Fn(&V) -> &N,
    FM: Fn(&mut V) -> &mut N, 
{ /* fields omitted */ }

Trait Implementations

impl<K, V, N, M, F, FM> MapAbstract<K, N> for MappedMap<K, V, N, M, F, FM> where
    M: MapAbstract<K, V>,
    F: Fn(&V) -> &N,
    FM: Fn(&mut V) -> &mut N, 
[src]

Auto Trait Implementations

impl<K, V, N, M, F, FM> RefUnwindSafe for MappedMap<K, V, N, M, F, FM> where
    F: RefUnwindSafe,
    FM: RefUnwindSafe,
    K: RefUnwindSafe,
    M: RefUnwindSafe,
    N: RefUnwindSafe,
    V: RefUnwindSafe
[src]

impl<K, V, N, M, F, FM> Send for MappedMap<K, V, N, M, F, FM> where
    F: Send,
    FM: Send,
    K: Send,
    M: Send,
    N: Send,
    V: Send
[src]

impl<K, V, N, M, F, FM> Sync for MappedMap<K, V, N, M, F, FM> where
    F: Sync,
    FM: Sync,
    K: Sync,
    M: Sync,
    N: Sync,
    V: Sync
[src]

impl<K, V, N, M, F, FM> Unpin for MappedMap<K, V, N, M, F, FM> where
    F: Unpin,
    FM: Unpin,
    K: Unpin,
    M: Unpin,
    N: Unpin,
    V: Unpin
[src]

impl<K, V, N, M, F, FM> UnwindSafe for MappedMap<K, V, N, M, F, FM> where
    F: UnwindSafe,
    FM: UnwindSafe,
    K: UnwindSafe,
    M: UnwindSafe,
    N: UnwindSafe,
    V: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.