pub trait FuncName {
const NAME: &'static str;
}Expand description
The canonical name of a scalar function.
For functions generated by #[sqlfunc] this is the name of the underlying
Rust function. Hand-written functions declare it explicitly. Test tooling
refers to exact function variants by these names, via
UnaryFunc::from_variant_name and its binary and variadic counterparts.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".