franklin/
color_mode.rs

1/// This enum specifies different options for choosing color mode.
2#[derive(Debug, Clone, Copy)]
3pub enum ColorMode {
4    /// Informs the environment that color channels of specimens should be treated separately.
5    Rgb,
6
7    /// Informs the environment that color channels of specimens should be treated together, i.e. all three hold the
8    /// same value.
9    Grayscale,
10}