Struct languageserver_types::ParameterInformation[][src]

pub struct ParameterInformation {
    pub label: String,
    pub documentation: Option<Documentation>,
}

Represents a parameter of a callable-signature. A parameter can have a label and a doc-comment.

Fields

The label of this parameter. Will be shown in the UI.

The human-readable doc-comment of this parameter. Will be shown in the UI but can be omitted.

Trait Implementations

impl Debug for ParameterInformation
[src]

Formats the value using the given formatter. Read more

impl Eq for ParameterInformation
[src]

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