Enum languageserver_types::HoverContents[][src]

pub enum HoverContents {
    Scalar(MarkedString),
    Array(Vec<MarkedString>),
    Markup(MarkupContent),
}

Hover contents could be single entry or multiple entries.

Variants

Trait Implementations

impl Debug for HoverContents
[src]

Formats the value using the given formatter. Read more

impl Eq for HoverContents
[src]

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