Trait PostprocessingStep

Source
pub trait PostprocessingStep<S: Scalar>:
    Debug
    + Send
    + Sync {
    // Required method
    fn apply(
        &self,
        owned_table: OwnedTable<S>,
    ) -> PostprocessingResult<OwnedTable<S>>;
}
Expand description

A trait for postprocessing steps that can be applied to an OwnedTable.

Required Methods§

Source

fn apply( &self, owned_table: OwnedTable<S>, ) -> PostprocessingResult<OwnedTable<S>>

Apply the postprocessing step to the OwnedTable and return the result.

Implementors§