[][src]Struct lifted::types::VecC

pub struct VecC;

A Vec<*> type constructor.

The Vec<*> type constructor has kind * -> *.

Trait Implementations

impl Applicative for VecC[src]

impl Functor for VecC[src]

impl<T> Kind1<T> for VecC[src]

type Inner = Vec<T>

The implementation type. Usually (but not necessarily) parameterized on type. Read more

impl Monad for VecC[src]

Auto Trait Implementations

impl RefUnwindSafe for VecC

impl Send for VecC

impl Sync for VecC

impl Unpin for VecC

impl UnwindSafe for VecC

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.