IdenList

Trait IdenList 

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

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

Required Associated Types§

type IntoIter: Iterator<Item = DynIden>

Required Methods§

fn into_iter(self) -> Self::IntoIter

Implementations on Foreign Types§

§

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

§

type IntoIter = IntoIter<DynIden, 2>

§

fn into_iter(self) -> Self::IntoIter

§

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

§

type IntoIter = IntoIter<DynIden, 3>

§

fn into_iter(self) -> Self::IntoIter

Implementors§

§

impl IdenList for ColumnName

Iteration over [db?, schema?, table?, column] identifiers.

§

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