Struct languageserver_types::Color[][src]

pub struct Color {
    pub red: f64,
    pub green: f64,
    pub blue: f64,
    pub alpha: f64,
}

Fields

The red component of this color in the range [0-1].

The green component of this color in the range [0-1].

The blue component of this color in the range [0-1].

The alpha component of this color in the range [0-1].

Trait Implementations

impl Debug for Color
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Color
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Color

impl Sync for Color