Skip to main content

ExprQuery

Trait ExprQuery 

Source
pub trait ExprQuery<I> {
    // Required method
    fn dispatch<'a>(
        &'a mut self,
        input: &I,
    ) -> Result<AnyValue<'a>, RadiateError>;
}

Required Methods§

Source

fn dispatch<'a>(&'a mut self, input: &I) -> Result<AnyValue<'a>, RadiateError>

Implementors§

Source§

impl<I> ExprQuery<I> for Expr
where I: ExprProjection,

Source§

impl<T> ExprQuery<T> for SelectExpr
where T: ExprProjection,