[−][src]Enum comfy_table::Color
Colors used for styling cell content. Reexport of crossterm's Color enum. Represents a color.
Platform-specific Notes
The following list of 16 base colors are available for almost all terminals (Windows 7 and 8 included).
Light | Dark |
---|---|
Grey | Black |
Red | DarkRed |
Green | DarkGreen |
Yellow | DarkYellow |
Blue | DarkBlue |
Magenta | DarkMagenta |
Cyan | DarkCyan |
White | DarkWhite |
Most UNIX terminals and Windows 10 consoles support additional colors.
See Color::Rgb
or Color::AnsiValue
for
more info.
Variants
Resets the terminal color.
Black color.
Dark grey color.
Light red color.
Dark red color.
Light green color.
Dark green color.
Light yellow color.
Dark yellow color.
Light blue color.
Dark blue color.
Light magenta color.
Dark magenta color.
Light cyan color.
Dark cyan color.
White color.
Grey color.
An RGB color. See RGB color model for more info.
Most UNIX terminals and Windows 10 supported only. See Platform-specific notes for more info.
AnsiValue(u8)
An ANSI color. See 256 colors - cheat sheet for more info.
Most UNIX terminals and Windows 10 supported only. See Platform-specific notes for more info.
Implementations
impl<'a> Color
[src]
Colors used for styling cell content. Reexport of crossterm's Color enum.
pub fn parse_ansi(ansi: &str) -> Option<Color>
[src]
Parses an ANSI color sequence. For example:
5;0 -> Black
,5;26 -> AnsiValue(26)
,2;50;60;70 -> Rgb(50, 60, 70)
. Invalid sequences map toNone
.
Currently, 3/4 bit color values aren't supported so return None
.
See also: Colored::parse_ansi
Trait Implementations
impl Clone for Color
[src]
impl Copy for Color
[src]
impl Debug for Color
[src]
impl Eq for Color
[src]
impl From<(u8, u8, u8)> for Color
[src]
impl FromStr for Color
[src]
type Err = ()
The associated error which can be returned from parsing.
pub fn from_str(src: &str) -> Result<Color, <Color as FromStr>::Err>
[src]
Creates a Color
from the string representation.
Notes
- Returns
Color::White
in case of an unknown color. - Does not return
Err
and you can safely unwrap.
impl Hash for Color
[src]
pub fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
__H: Hasher,
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for Color
[src]
pub fn cmp(&self, other: &Color) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<Color> for Color
[src]
impl PartialOrd<Color> for Color
[src]
pub fn partial_cmp(&self, other: &Color) -> Option<Ordering>
[src]
pub fn lt(&self, other: &Color) -> bool
[src]
pub fn le(&self, other: &Color) -> bool
[src]
pub fn gt(&self, other: &Color) -> bool
[src]
pub fn ge(&self, other: &Color) -> bool
[src]
impl StructuralEq for Color
[src]
impl StructuralPartialEq for Color
[src]
impl<'_> TryFrom<&'_ str> for Color
[src]
Auto Trait Implementations
impl RefUnwindSafe for Color
[src]
impl Send for Color
[src]
impl Sync for Color
[src]
impl Unpin for Color
[src]
impl UnwindSafe for Color
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,