pub trait PullSpec {
    type Props: Props;
}

Required Associated Types§

Implementations on Foreign Types§

source§

impl<I> PullSpec for Cloned<I>
where I: PullSpec,

§

type Props = <I as PullSpec>::Props

source§

impl<I> PullSpec for Copied<I>
where I: PullSpec,

§

type Props = <I as PullSpec>::Props

source§

impl<I> PullSpec for Flatten<I>

§

type Props = <I as PullSpec>::Props

source§

impl<I, F> PullSpec for FilterMap<I, F>
where I: PullSpec,

§

type Props = <I as PullSpec>::Props

source§

impl<I, F> PullSpec for Inspect<I, F>
where I: PullSpec,

§

type Props = <I as PullSpec>::Props

source§

impl<I, F> PullSpec for Map<I, F>
where I: PullSpec,

§

type Props = <I as PullSpec>::Props

source§

impl<I, P> PullSpec for Filter<I, P>
where I: PullSpec,

§

type Props = <I as PullSpec>::Props

source§

impl<I, U, F> PullSpec for FlatMap<I, U, F>
where I: Iterator + PullSpec, U: IntoIterator, F: FnMut(I::Item) -> U,

§

type Props = <I as PullSpec>::Props

Implementors§