Trait radn::flow::query::QueryEnrich

source ·
pub trait QueryEnrich<A>: Query {
    // Required method
    fn enrich(&self, output: Self::Output, a: A) -> Self::Output;
}

Required Methods§

source

fn enrich(&self, output: Self::Output, a: A) -> Self::Output

Implementors§

source§

impl<Q, A> QueryEnrich<A> for StartQuery<Q, BootQuery>where Q: QueryEnrich<A> + Query,

source§

impl<Q, A, Ax: Enriches<A>> QueryEnrich<Ax> for ChainQuery<Q, A>where Q: QueryEnrich<Ax> + QueryChain, Q::Original: QueryEnrich<A>,

source§

impl<Q: Query, A> QueryEnrich<A> for StartQuery<Q, IgnoreQuery>