Struct languageserver_types::RenameParams[][src]

pub struct RenameParams {
    pub text_document: TextDocumentIdentifier,
    pub position: Position,
    pub new_name: String,
}

Fields

The document to format.

The position at which this request was sent.

The new name of the symbol. If the given name is not valid the request must return a ResponseError with an appropriate message set.

Trait Implementations

impl Debug for RenameParams
[src]

Formats the value using the given formatter. Read more

impl Eq for RenameParams
[src]

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