Skip to main content

ExpressionRoutines

Trait ExpressionRoutines 

Source
pub trait ExpressionRoutines {
    // Required method
    fn resolve(
        &self,
        name: &str,
        binding: Option<&FunctionBinding>,
        argument_types: &[Option<ColumnType>],
    ) -> Result<RoutineIdentity, SQLError>;
}

Required Methods§

Source

fn resolve( &self, name: &str, binding: Option<&FunctionBinding>, argument_types: &[Option<ColumnType>], ) -> Result<RoutineIdentity, SQLError>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§