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
label: String
The label of this parameter. Will be shown in the UI.
documentation: Option<Documentation>
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 Debug for ParameterInformationfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for ParameterInformation[src]
impl Eq for ParameterInformationimpl PartialEq for ParameterInformation[src]
impl PartialEq for ParameterInformationfn eq(&self, other: &ParameterInformation) -> bool[src]
fn eq(&self, other: &ParameterInformation) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ParameterInformation) -> bool[src]
fn ne(&self, other: &ParameterInformation) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for ParameterInformation
impl Send for ParameterInformationimpl Sync for ParameterInformation
impl Sync for ParameterInformation