Trait IdenList

pub trait IdenList {
    type IntoIter: Iterator<Item = SeaRc<dyn Iden>>;

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

Required Associated Types§

type IntoIter: Iterator<Item = SeaRc<dyn Iden>>

Required Methods§

fn into_iter(self) -> Self::IntoIter

Implementations on Foreign Types§

§

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

§

type IntoIter = IntoIter<SeaRc<dyn Iden>, 2>

§

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

§

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

Implementors§

§

impl<I> IdenList for I
where I: IntoIden,

§

type IntoIter = Once<SeaRc<dyn Iden>>