Trait iceberg::expr::Bind

source ·
pub trait Bind {
    type Bound;

    // Required method
    fn bind(
        &self,
        schema: SchemaRef,
        case_sensitive: bool,
    ) -> Result<Self::Bound>;
}
Expand description

Bind expression to a schema.

Required Associated Types§

source

type Bound

The type of the bound result.

Required Methods§

source

fn bind(&self, schema: SchemaRef, case_sensitive: bool) -> Result<Self::Bound>

Bind an expression to a schema.

Implementors§