[][src]Trait haskell_bits::typeapp::WithTypeArg

pub trait WithTypeArg<T: ?Sized> {
    type Type: TypeApp<Self, T>;
}

Associated Types

type Type: TypeApp<Self, T>

Loading content...

Implementors

impl<T> WithTypeArg<T> for haskell_bits::impls::OptionTypeCon[src]

type Type = Option<T>

impl<T> WithTypeArg<T> for haskell_bits::impls::VecTypeCon[src]

type Type = Vec<T>

impl<T, E> WithTypeArg<T> for haskell_bits::impls::ResultTypeCon<E>[src]

type Type = Result<T, E>

Loading content...