Modelled

Trait Modelled 

Source
pub trait Modelled<T> {
    // Required method
    fn model(&self) -> &T;
}
Expand description

A trait to provide access to the underlying model.

Required Methods§

Source

fn model(&self) -> &T

Get the model.

§Returns

A reference to the model.

Implementors§

Source§

impl<R, M, E> Modelled<M> for ApproximateInference<'_, R, M, E>