Trait IdenList

Source
pub trait IdenList {
    type IntoIter: Iterator<Item = DynIden>;

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

Required Associated Types§

Required Methods§

Source

fn into_iter(self) -> Self::IntoIter

Implementations on Foreign Types§

Source§

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

Source§

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

Implementors§

Source§

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