pub trait FunctionArgs {
// Required methods
fn into_values(self) -> Vec<Value>;
fn validate_signature(function_name: &str, params: &[Type]) -> Result<()>;
}Required Methods§
fn into_values(self) -> Vec<Value>
fn validate_signature(function_name: &str, params: &[Type]) -> Result<()>
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.