]> git.proxmox.com Git - rustc.git/blob - vendor/concolor/src/stream.rs
New upstream version 1.70.0+dfsg2
[rustc.git] / vendor / concolor / src / stream.rs
1 /// Output stream to [`get()`][crate::get] the [`Color`][crate::Color] state for
2 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
3 pub enum Stream {
4 Stdout,
5 Stderr,
6 /// When unsure which will be used (lowest common denominator of `Stdout` and `Stderr`)
7 Either,
8 }