pub enum WillRenameFilesRequest {}Expand description
The will rename files request is sent from the client to the server before files are actually renamed as long as the rename is triggered from within the client.
@since 3.16.0
Trait Implementations§
Source§impl Debug for WillRenameFilesRequest
impl Debug for WillRenameFilesRequest
Source§impl Request for WillRenameFilesRequest
impl Request for WillRenameFilesRequest
const METHOD: LspRequestMethod<'static> = LspRequestMethod::WorkspaceWillRenameFiles
const MESSAGE_DIRECTION: MessageDirection = MessageDirection::ClientToServer
type Params = RenameFilesParams
type Result = Option<WorkspaceEdit>
Auto Trait Implementations§
impl Freeze for WillRenameFilesRequest
impl RefUnwindSafe for WillRenameFilesRequest
impl Send for WillRenameFilesRequest
impl Sync for WillRenameFilesRequest
impl Unpin for WillRenameFilesRequest
impl UnsafeUnpin for WillRenameFilesRequest
impl UnwindSafe for WillRenameFilesRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more