pub trait GenericTransform {
fn transform(
&self,
input: ImageTransformResult
) -> Result<ImageTransformResult, &'static str>;
}pub trait GenericTransform {
fn transform(
&self,
input: ImageTransformResult
) -> Result<ImageTransformResult, &'static str>;
}