Skip to main content

PreparedPlanProvider

Trait PreparedPlanProvider 

Source
pub trait PreparedPlanProvider {
    // Required method
    fn plan_for_execution(
        &self,
        name: &str,
        parameters: &[SQLParam],
    ) -> Result<Option<UnifiedPlan>, SQLError>;
}

Required Methods§

Source

fn plan_for_execution( &self, name: &str, parameters: &[SQLParam], ) -> Result<Option<UnifiedPlan>, SQLError>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§