pub trait TestUniformSample {
    // Required method
    fn test_sample(uniform: &Uniform, _foo: &Self) -> f64;
}
Expand description

オーバーロードを付与するためのテストトレイト

運用がうまくいくことを確認した後、本番トレイトに置き換えて削除する

Required Methods§

source

fn test_sample(uniform: &Uniform, _foo: &Self) -> f64

Implementations on Foreign Types§

source§

impl TestUniformSample for (f64, f64)

source§

fn test_sample(uniform: &Uniform, foo: &Self) -> f64

source§

impl TestUniformSample for ()

source§

fn test_sample(uniform: &Uniform, _foo: &Self) -> f64

Implementors§