Trait CallableParam

Source
pub trait CallableParam {
    // Required methods
    fn push<T: ICallableApi>(&self, callable: &mut T) -> Result<(), SPError>;
    fn param_type() -> ParamType;
}

Required Methods§

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.

Implementations on Foreign Types§

Source§

impl CallableParam for &CStr

Source§

impl CallableParam for f32

Source§

impl CallableParam for i32

Implementors§