pub trait Density {
type Param;
type Output;
// Required method
fn density(&self, at: Self::Param) -> Self::Output;
}Expand description
Density function.
pub trait Density {
type Param;
type Output;
// Required method
fn density(&self, at: Self::Param) -> Self::Output;
}Density function.