pub trait FunctionSignature {
// Required methods
fn parameters(&self) -> &Vec<TyFunctionParameter>;
fn return_type(&self) -> &GenericTypeArgument;
}Required Methods§
fn parameters(&self) -> &Vec<TyFunctionParameter>
fn return_type(&self) -> &GenericTypeArgument
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".