pub trait IntoExprTarget<'a, T = Schema> {
// Required method
fn into_expr_target(self, schema: &'a T) -> ExprTarget<'a>;
}Expand description
Conversion trait for producing an ExprTarget from a statement or
schema element.
Required Methods§
Sourcefn into_expr_target(self, schema: &'a T) -> ExprTarget<'a>
fn into_expr_target(self, schema: &'a T) -> ExprTarget<'a>
Converts self into an ExprTarget using the provided schema.