pub trait InferenceBindingScope {
// Required method
fn binding_scope(&self) -> Result<BindingSnapshot, SQLError>;
}Expand description
Capture the stored-expression catalog scope only when an inference expression requires binding.
Required Methods§
fn binding_scope(&self) -> Result<BindingSnapshot, SQLError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".