Trait radn::flow::query::QueryExt

source ·
pub trait QueryExt: Query {
    // Provided methods
    fn start<M>(self) -> StartQuery<Self, M> { ... }
    fn enriching<A>(self) -> ChainQuery<Self, A>
       where Self: QueryChain,
             Self::Original: QueryEnrich<A> { ... }
}

Provided Methods§

source

fn start<M>(self) -> StartQuery<Self, M>

source

fn enriching<A>(self) -> ChainQuery<Self, A>where Self: QueryChain, Self::Original: QueryEnrich<A>,

Implementors§

source§

impl<Q: Query> QueryExt for Q