Trait parsell::VariantFunction [] [src]

pub trait VariantFunction<T> {
    type Input;
    fn apply(&self, arg: Self::Input) -> T;
}

A trait for functions that can compute their inputs from their outputs

Associated Types

Required Methods

Implementors