pub trait IdenList {
    type IntoIter: Iterator<Item = Arc<dyn Iden, Global>>;

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

Required Associated Types§

type IntoIter: Iterator<Item = Arc<dyn Iden, Global>>

Required Methods§

fn into_iter(self) -> Self::IntoIter

Implementations on Foreign Types§

§

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

§

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

Implementors§

§

impl<I> IdenList for Iwhere I: IntoIden,

§

type IntoIter = Once<Arc<dyn Iden, Global>>