Struct languageserver_types::RenameParams
[−]
[src]
pub struct RenameParams {
pub text_document: TextDocumentIdentifier,
pub position: Position,
pub new_name: String,
}Fields
text_document: TextDocumentIdentifier
The document to format.
position: Position
The position at which this request was sent.
new_name: String
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]
impl PartialEq for RenameParams[src]
fn eq(&self, __arg_0: &RenameParams) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &RenameParams) -> bool[src]
This method tests for !=.