Enum aflak_imgui::ColorPreview[][src]

pub enum ColorPreview {
    Opaque,
    HalfAlpha,
    Alpha,
}

Color editor preview style.

Variants

Don't show the alpha component.

Half of the preview area shows the alpha component using a checkerboard pattern.

Show the alpha component using a checkerboard pattern.

Trait Implementations

impl Copy for ColorPreview
[src]

impl Clone for ColorPreview
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ColorPreview
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ColorPreview
[src]

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

This method tests for !=.

impl Eq for ColorPreview
[src]

Auto Trait Implementations