Trait scsys_core::hkt::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>

§

type C = T

§

type T = Option<U>

source§

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

§

type C = T

§

type T = Box<U>

source§

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

§

type C = T

§

type T = Rc<U>

source§

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

§

type C = T

§

type T = Arc<U>

source§

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

§

type C = T

§

type T = Vec<U>

Implementors§