pub trait IdenList {
    type IntoIter: Iterator
    where
        <Self::IntoIter as Iterator>::Item == Arc<dyn Iden + 'static>
; fn into_iter(self) -> Self::IntoIter; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors