pub enum DocumentDiagnosticRequest {}
Expand description
The text document diagnostic request is sent from the client to the server to ask the server to compute the diagnostics for a given document. As with other pull requests the server is asked to compute the diagnostics for the currently synced version of the document.
Trait Implementations§
source§impl Debug for DocumentDiagnosticRequest
impl Debug for DocumentDiagnosticRequest
source§impl Request for DocumentDiagnosticRequest
impl Request for DocumentDiagnosticRequest
type Params = DocumentDiagnosticParams
type Result = DocumentDiagnosticReportResult
const METHOD: &'static str = "textDocument/diagnostic"
Auto Trait Implementations§
impl Freeze for DocumentDiagnosticRequest
impl RefUnwindSafe for DocumentDiagnosticRequest
impl Send for DocumentDiagnosticRequest
impl Sync for DocumentDiagnosticRequest
impl Unpin for DocumentDiagnosticRequest
impl UnwindSafe for DocumentDiagnosticRequest
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