ScalarFunc

Trait ScalarFunc 

Source
pub trait ScalarFunc<T> {
    // Required method
    fn add_scalar_quantity(
        ps_point: *mut c_void,
        name: &str,
        scala_values: &T,
        enabled: bool,
    );
}

Required Methods§

Source

fn add_scalar_quantity( ps_point: *mut c_void, name: &str, scala_values: &T, enabled: bool, )

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.

Implementors§