pub struct RelatedUnchangedDocumentDiagnosticReport {
pub related_documents: Option<HashMap<Url, DocumentDiagnosticReportKind, RandomState>>,
pub unchanged_document_diagnostic_report: UnchangedDocumentDiagnosticReport,
}
Expand description
An unchanged diagnostic report with a set of related documents.
@since 3.17.0
Fields§
Diagnostics of related documents.
This information is useful in programming languages where code in a file A can generate
diagnostics in a file B which A depends on. An example of such a language is C/C++ where
macro definitions in a file a.cpp
result in errors in a header file b.hpp
.
@since 3.17.0
unchanged_document_diagnostic_report: UnchangedDocumentDiagnosticReport
Trait Implementations§
§impl Clone for RelatedUnchangedDocumentDiagnosticReport
impl Clone for RelatedUnchangedDocumentDiagnosticReport
§fn clone(&self) -> RelatedUnchangedDocumentDiagnosticReport
fn clone(&self) -> RelatedUnchangedDocumentDiagnosticReport
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<'de> Deserialize<'de> for RelatedUnchangedDocumentDiagnosticReport
impl<'de> Deserialize<'de> for RelatedUnchangedDocumentDiagnosticReport
§fn deserialize<__D>(
__deserializer: __D
) -> Result<RelatedUnchangedDocumentDiagnosticReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<RelatedUnchangedDocumentDiagnosticReport, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<RelatedUnchangedDocumentDiagnosticReport> for DocumentDiagnosticReport
impl From<RelatedUnchangedDocumentDiagnosticReport> for DocumentDiagnosticReport
§fn from(
from: RelatedUnchangedDocumentDiagnosticReport
) -> DocumentDiagnosticReport
fn from( from: RelatedUnchangedDocumentDiagnosticReport ) -> DocumentDiagnosticReport
Converts to this type from the input type.
§impl PartialEq<RelatedUnchangedDocumentDiagnosticReport> for RelatedUnchangedDocumentDiagnosticReport
impl PartialEq<RelatedUnchangedDocumentDiagnosticReport> for RelatedUnchangedDocumentDiagnosticReport
§fn eq(&self, other: &RelatedUnchangedDocumentDiagnosticReport) -> bool
fn eq(&self, other: &RelatedUnchangedDocumentDiagnosticReport) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for RelatedUnchangedDocumentDiagnosticReport
impl Serialize for RelatedUnchangedDocumentDiagnosticReport
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RelatedUnchangedDocumentDiagnosticReport
Auto Trait Implementations§
impl RefUnwindSafe for RelatedUnchangedDocumentDiagnosticReport
impl Send for RelatedUnchangedDocumentDiagnosticReport
impl Sync for RelatedUnchangedDocumentDiagnosticReport
impl Unpin for RelatedUnchangedDocumentDiagnosticReport
impl UnwindSafe for RelatedUnchangedDocumentDiagnosticReport
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