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 Debug for RenameParamsfn 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 RenameParams[src]
impl Eq for RenameParamsimpl PartialEq for RenameParams[src]
impl PartialEq for RenameParamsfn eq(&self, other: &RenameParams) -> bool[src]
fn eq(&self, other: &RenameParams) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &RenameParams) -> bool[src]
fn ne(&self, other: &RenameParams) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for RenameParams
impl Send for RenameParamsimpl Sync for RenameParams
impl Sync for RenameParams