1/// Output stream to [`get()`][crate::get] the [`Color`][crate::Color] state for
2#[derive(Copy, Clone, Debug, PartialEq, Eq)]
3pub enum Stream {
4 Stdout,
5 Stderr,
6/// When unsure which will be used (lowest common denominator of `Stdout` and `Stderr`)
7Either,
8}