pub trait ImageOperation {
// Required method
fn apply_operation(
&self,
image: &mut SicImage,
) -> Result<(), SicImageEngineError>;
}
pub trait ImageOperation {
// Required method
fn apply_operation(
&self,
image: &mut SicImage,
) -> Result<(), SicImageEngineError>;
}