Trait Processing

Source
pub trait Processing {
    type ProcessorData;

    // Required method
    fn processing(&self) -> Self::ProcessorData;
}

Required Associated Types§

Required Methods§

Source

fn processing(&self) -> Self::ProcessorData

Implementors§

Source§

impl<T> Processing for PyramidProcessor<T>
where T: Debug + TryFrom<f32> + Copy + Add<Output = T> + Sub<Output = T> + DivAssign + Mul<Output = T> + PartialOrd + 'static, for<'a> &'a T: Sub<Output = T> + Add<Output = T>, <T as TryFrom<f32>>::Error: Debug,

Source§

type ProcessorData = PyramidData<T>