Trait IdenList
Other items insea_query::types
pub trait IdenList { type IntoIter: Iterator<Item = DynIden>; fn into_iter(self) -> Self::IntoIter; }
type IntoIter: Iterator<Item = DynIden>
fn into_iter(self) -> Self::IntoIter
impl<A, B> IdenList for (A, B) where A: IntoIden, B: IntoIden,
type IntoIter = IntoIter<DynIden>
impl<A, B, C> IdenList for (A, B, C) where A: IntoIden, B: IntoIden, C: IntoIden,
impl<I> IdenList for I where I: IntoIden,