Trait sea_orm_migration::prelude::IdenList

source ·
pub trait IdenList {
    type IntoIter: Iterator<Item = SeaRc<dyn Iden>>;

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

Required Associated Types§

source

type IntoIter: Iterator<Item = SeaRc<dyn Iden>>

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,

source§

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

Implementors§

source§

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

§

type IntoIter = Once<SeaRc<dyn Iden>>