1 2 3 4
/// A trait for types that have a parameter. pub trait HasParameter<T> { fn parameter(&self) -> T; }