Trait sea_query::types::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,

§

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

source§

fn into_iter(self) -> Self::IntoIter

source§

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

§

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

source§

fn into_iter(self) -> Self::IntoIter

Implementors§

source§

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