pub trait ModelOutputSuccess:
Clone
+ Debug
+ DeserializeOwned
+ IntoPy<PyObject>
+ Send
+ Serialize {
// Required methods
fn horizontal_merge(self, output: Self) -> Self;
fn vertical_merge(self, output: Self) -> Self;
}
Expand description
Results of a model.
Required Methods§
Sourcefn horizontal_merge(self, output: Self) -> Self
fn horizontal_merge(self, output: Self) -> Self
Merge two outputs across time steps.
Sourcefn vertical_merge(self, output: Self) -> Self
fn vertical_merge(self, output: Self) -> Self
Merge two outputs within the same time step.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.