Trait AssociatedType

Source
pub trait AssociatedType {
    type Type;
}

Required Associated Types§

Implementors§

Source§

impl<T> AssociatedType for EnableIf<true, T>

Source§

type Type = T

Source§

impl<T, F> AssociatedType for Conditional<false, T, F>

Source§

type Type = F

Source§

impl<T, F> AssociatedType for Conditional<true, T, F>

Source§

type Type = T