pub trait SelfAsScalarRef {
// Required method
fn as_scalar_ref(&self) -> Self;
}
Expand description
To make sure there is as_scalar_ref
for all scalar ref types.
See https://github.com/risingwavelabs/risingwave/pull/9977/files#r1208972881
This is used by the expr macro.
Required Methods§
fn as_scalar_ref(&self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.