PushFront

Trait PushFront 

Source
pub trait PushFront<E> {
    type Output;

    // Required method
    fn push_front(self, e: E) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn push_front(self, e: E) -> Self::Output

Implementations on Foreign Types§

Source§

impl<H, T1, T2, T3, T4> PushFront<H> for (T1, T2, T3, T4)

Source§

impl<H, T2, T3, T4> PushFront<H> for (T2, T3, T4)

Source§

impl<H, T3, T4> PushFront<H> for (T3, T4)

Source§

type Output = (H, T3, T4)

Source§

fn push_front(self, e: H) -> Self::Output

Source§

impl<H, T4> PushFront<H> for (T4,)

Source§

type Output = (H, T4)

Source§

fn push_front(self, e: H) -> Self::Output

Implementors§