Trait ModelOutputSuccess

Source
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§

Source

fn horizontal_merge(self, output: Self) -> Self

Merge two outputs across time steps.

Source

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.

Implementations on Foreign Types§

Source§

impl ModelOutputSuccess for ()

Implementors§