pub trait CallableParam {
// Required methods
fn push<T: ICallableApi>(&self, callable: &mut T) -> Result<(), SPError>;
fn param_type() -> ParamType;
}
Required Methods§
fn push<T: ICallableApi>(&self, callable: &mut T) -> Result<(), SPError>
fn param_type() -> ParamType
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.