Enum lsp_types::request::WillCreateFiles
source · pub enum WillCreateFiles {}
Expand description
The will create files request is sent from the client to the server before files are actually created as long as the creation is triggered from within the client. The request can return a WorkspaceEdit which will be applied to workspace before the files are created. Please note that clients might drop results if computing the edit took too long or if a server constantly fails on this request. This is done to keep creates fast and reliable.
Trait Implementations§
source§impl Request for WillCreateFiles
impl Request for WillCreateFiles
Auto Trait Implementations§
impl Freeze for WillCreateFiles
impl RefUnwindSafe for WillCreateFiles
impl Send for WillCreateFiles
impl Sync for WillCreateFiles
impl Unpin for WillCreateFiles
impl UnwindSafe for WillCreateFiles
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