Struct languageserver_types::ColorPresentationParams[][src]

pub struct ColorPresentationParams {
    pub text_document: TextDocumentIdentifier,
    pub color: Color,
    pub range: Range,
}

Fields

The text document.

The color information to request presentations for.

The range where the color would be inserted. Serves as a context.

Trait Implementations

impl Debug for ColorPresentationParams
[src]

Formats the value using the given formatter. Read more

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