pub trait ComputableTransform<F, T> {
// Required method
fn apply(
&self,
bounds: TransformAndBounds<F, T>,
) -> TransformAndBounds<F, T>;
}pub trait ComputableTransform<F, T> {
// Required method
fn apply(
&self,
bounds: TransformAndBounds<F, T>,
) -> TransformAndBounds<F, T>;
}