Struct languageserver_types::ColorInformation[][src]

pub struct ColorInformation {
    pub range: Range,
    pub color: Color,
}

Fields

The range in the document where this color appears.

The actual color value for this color range.

Trait Implementations

impl Debug for ColorInformation
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ColorInformation
[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