pub trait InstRecordValues: FmiInstance + Sized {
// Required method
fn record_outputs(
&mut self,
time: f64,
recorder: &mut RecorderState<Self>,
) -> Result<()>;
}Required Methods§
fn record_outputs( &mut self, time: f64, recorder: &mut RecorderState<Self>, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".