pub enum BasicPalette {
    Hot,
    Mem,
    Io,
    Red,
    Green,
    Blue,
    Aqua,
    Yellow,
    Purple,
    Orange,
}
Expand description

A plain color palette in which the color is not chosen based on function semantics.

Exactly how the color is chosen depends on a number of other configuration options like [super::Options.consistent_palette] and [super::Options.hash]. In the absence of options like that, these palettes all choose colors randomly from the indicated spectrum, and does not consider the name of the frame’s function when doing so.

Variants

Hot

A palette in which colors are chosen from a red-yellow spectrum.

Mem

A palette in which colors are chosen from a green-blue spectrum.

Io

A palette in which colors are chosen from a wide blue spectrum.

Red

A palette in which colors are chosen from a red spectrum.

Green

A palette in which colors are chosen from a green spectrum.

Blue

A palette in which colors are chosen from a blue spectrum.

Aqua

A palette in which colors are chosen from an aqua-tinted spectrum.

Yellow

A palette in which colors are chosen from a yellow spectrum.

Purple

A palette in which colors are chosen from a purple spectrum.

Orange

A palette in which colors are chosen from a orange spectrum.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.