Trait A

Source
pub trait A<In> {
    type O;
}

Required Associated Types§

Source

type O

Implementors§

Source§

impl<T> A<T> for I

Source§

type O = T

Source§

impl<T> A<T> for K

Source§

type O = K1<T>

Source§

impl<T> A<T> for S

Source§

type O = S1<T>

Source§

impl<X, T> A<T> for K1<X>

Source§

type O = X

Source§

impl<X, T> A<T> for S1<X>

Source§

type O = S2<X, T>

Source§

impl<X, Y, T> A<T> for S2<X, Y>
where X: A<T>, Y: A<T>, <X as A<T>>::O: A<<Y as A<T>>::O>,

Source§

type O = <<X as A<T>>::O as A<<Y as A<T>>::O>>::O