Enum languageserver_types::PrepareRenameResponse[][src]

pub enum PrepareRenameResponse {
    Range(Range),
    RangeWithPlaceholder {
        range: Range,
        placeholder: String,
    },
}

Variants

Fields of RangeWithPlaceholder

Trait Implementations

impl Debug for PrepareRenameResponse
[src]

Formats the value using the given formatter. Read more

impl Eq for PrepareRenameResponse
[src]

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