pub trait TryMend<From> {
    type Into: Layout;
    type Err;

    fn try_mend(self, from: &From) -> Result<Self::Into, Self::Err>;
}
Expand description

Try to convert a layout to a stricter one.

Required Associated Types

Required Methods

Implementors

Try to use the matrix with a specific pixel type.

Try to use the matrix with a specific pixel type.