Struct languageserver_types::ParameterInformation
[−]
[src]
pub struct ParameterInformation {
pub label: String,
pub documentation: Option<String>,
}Represents a parameter of a callable-signature. A parameter can have a label and a doc-comment.
Fields
label: String
The label of this parameter. Will be shown in the UI.
documentation: Option<String>
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]
impl PartialEq for ParameterInformation[src]
fn eq(&self, __arg_0: &ParameterInformation) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ParameterInformation) -> bool[src]
This method tests for !=.