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

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors