//! Contains common types used throughout our API
use Future;
use Pin;
/// Defines optional operations to be applied on the Algorithm under analysis' data -- such as "Reset" and "Warmup"
pub type AlgoManipulationAsyncFn<AlgoDataType> = ;
/// Defines optional assertions to be applied on the Algorithm's data after a pass is executed -- to allow ensuring the pass worked as expected
pub type AlgoAssertionAsyncFn<AlgoDataType> = ;