pub trait Modelled<T> { // Required method fn model(&self) -> &T; }
A trait to provide access to the underlying model.
Get the model.
A reference to the model.