pub trait IdenList {
    type IntoIter: Iterator<Item = Arc<dyn Iden + 'static>>;

    // Required method
    fn into_iter(self) -> Self::IntoIter;
}

Required Associated Types§

type IntoIter: Iterator<Item = Arc<dyn Iden + 'static>>

Required Methods§

fn into_iter(self) -> Self::IntoIter

Implementations on Foreign Types§

§

impl<A, B, C> IdenList for (A, B, C)where A: IntoIden, B: IntoIden, C: IntoIden,

§

type IntoIter = IntoIter<Arc<dyn Iden + 'static>, 3>

§

fn into_iter(self) -> <(A, B, C) as IdenList>::IntoIter

§

impl<A, B> IdenList for (A, B)where A: IntoIden, B: IntoIden,

§

type IntoIter = IntoIter<Arc<dyn Iden + 'static>, 2>

§

fn into_iter(self) -> <(A, B) as IdenList>::IntoIter

Implementors§

§

impl<I> IdenList for Iwhere I: IntoIden,

§

type IntoIter = Once<Arc<dyn Iden + 'static>>