pub trait AlgorithmParamters {
    type Arguments: Clone + Send + Sync + 'static;
    type Error: StdError + Send + Sync + 'static;
}

Required Associated Types§

source

type Arguments: Clone + Send + Sync + 'static

source

type Error: StdError + Send + Sync + 'static

Implementors§