Skip to main content

CombiningRule

Trait CombiningRule 

Source
pub trait CombiningRule<P> {
    // Required method
    fn combining_rule(
        comp_i: &P,
        comp_j: &P,
        parameters_i: &Self,
        parameters_j: &Self,
    ) -> Self;
}

Required Methods§

Source

fn combining_rule( comp_i: &P, comp_j: &P, parameters_i: &Self, parameters_j: &Self, ) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<P> CombiningRule<P> for ()

Source§

fn combining_rule(_: &P, _: &P, _: &Self, _: &Self)

Implementors§