pub trait ScalarFnSessionExt: SessionExt {
// Provided method
fn scalar_fns(&self) -> Ref<'_, ScalarFnSession> { ... }
}Expand description
Extension trait for accessing scalar function session data.
Provided Methods§
Sourcefn scalar_fns(&self) -> Ref<'_, ScalarFnSession>
fn scalar_fns(&self) -> Ref<'_, ScalarFnSession>
Returns the scalar function vtable registry.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".