Enum term_transcript::svg::NamedPalette
source · #[non_exhaustive]
pub enum NamedPalette {
Dracula,
PowerShell,
Xterm,
Ubuntu,
Gjm8,
}
Available on crate feature
svg
only.Expand description
Named Palette
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Dracula
Dracula color scheme. This is the Default
value.
PowerShell
PowerShell 6 / Windows 10 console color scheme.
Xterm
xterm
color scheme.
Ubuntu
Ubuntu terminal color scheme.
Gjm8
Trait Implementations§
source§impl Clone for NamedPalette
impl Clone for NamedPalette
source§fn clone(&self) -> NamedPalette
fn clone(&self) -> NamedPalette
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NamedPalette
impl Debug for NamedPalette
source§impl Default for NamedPalette
impl Default for NamedPalette
source§impl From<NamedPalette> for Palette
impl From<NamedPalette> for Palette
source§fn from(value: NamedPalette) -> Self
fn from(value: NamedPalette) -> Self
Converts to this type from the input type.
source§impl FromStr for NamedPalette
impl FromStr for NamedPalette
source§impl Hash for NamedPalette
impl Hash for NamedPalette
source§impl PartialEq<NamedPalette> for NamedPalette
impl PartialEq<NamedPalette> for NamedPalette
source§fn eq(&self, other: &NamedPalette) -> bool
fn eq(&self, other: &NamedPalette) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.