Struct languageserver_types::ColorPresentation[][src]

pub struct ColorPresentation {
    pub label: String,
    pub text_edit: Option<TextEdit>,
    pub additional_text_edits: Option<Vec<TextEdit>>,
}

Fields

The label of this color presentation. It will be shown on the color picker header. By default this is also the text that is inserted when selecting this color presentation.

An edit which is applied to a document when selecting this presentation for the color. When falsy the label is used.

An optional array of additional text edits that are applied when selecting this color presentation. Edits must not overlap with the main edit nor with themselves.

Trait Implementations

impl Debug for ColorPresentation
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ColorPresentation
[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 ColorPresentation
[src]

impl Default for ColorPresentation
[src]

Returns the "default value" for a type. Read more

impl Clone for ColorPresentation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations