Trait HKT

Source
pub trait HKT<U> {
    type C;
    type T;
}

Required Associated Types§

Source

type C

Source

type T

Implementations on Foreign Types§

Source§

impl<T, U> HKT<U> for Option<T>

Source§

type C = T

Source§

type T = Option<U>

Source§

impl<T, U> HKT<U> for Box<T>

Source§

type C = T

Source§

type T = Box<U>

Source§

impl<T, U> HKT<U> for Rc<T>

Source§

type C = T

Source§

type T = Rc<U>

Source§

impl<T, U> HKT<U> for Arc<T>

Source§

type C = T

Source§

type T = Arc<U>

Source§

impl<T, U> HKT<U> for Vec<T>

Source§

type C = T

Source§

type T = Vec<U>

Implementors§