Trait HKT3

Source
pub trait HKT3<U1, U2> {
    type Current1;
    type Current2;
    type Target;
}

Required Associated Types§

Implementations on Foreign Types§

Source§

impl<T1, T2, U1, U2> HKT3<U1, U2> for HashMap<T1, T2>

Source§

type Current1 = T1

Source§

type Current2 = T2

Source§

type Target = HashMap<U1, U2>

Implementors§