Trait proof_of_sql::sql::postprocessing::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§
sourcefn apply(
    &self,
    owned_table: OwnedTable<S>,
) -> PostprocessingResult<OwnedTable<S>>
 
fn apply( &self, owned_table: OwnedTable<S>, ) -> PostprocessingResult<OwnedTable<S>>
Apply the postprocessing step to the OwnedTable and return the result.