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, C> IdenList for (A, B, C)where A: IntoIden, B: IntoIden, C: IntoIden,

§

type IntoIter = IntoIter<Arc<dyn Iden + 'static>, 3>

source§

fn into_iter(self) -> Self::IntoIter

source§

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

§

type IntoIter = IntoIter<Arc<dyn Iden + 'static>, 2>

source§

fn into_iter(self) -> Self::IntoIter

Implementors§

source§

impl<I> IdenList for Iwhere I: IntoIden,

§

type IntoIter = Once<Arc<dyn Iden + 'static>>