pub trait TryIntoColorDepth {
    type Error;

    fn try_into_ColorDepth(self) -> Result<ColorDepth, Self::Error>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors