pub trait Heavyside {
type Output;
// Required methods
fn heavyside(self) -> Self::Output;
fn heavyside_derivative(self) -> Self::Output;
}pub trait Heavyside {
type Output;
// Required methods
fn heavyside(self) -> Self::Output;
fn heavyside_derivative(self) -> Self::Output;
}