Struct hassle_rs::intellisense::IDxcDiagnostic
source · #[repr(C)]pub struct IDxcDiagnostic { /* private fields */ }
Implementations§
source§impl IDxcDiagnostic
impl IDxcDiagnostic
pub unsafe fn format_diagnostic(
&self,
options: DxcDiagnosticDisplayOptions,
result: *mut LPSTR
) -> HRESULT
pub unsafe fn get_severity(&self, result: *mut DxcDiagnosticSeverity) -> HRESULT
pub unsafe fn get_location(
&self,
result: *mut *mut IDxcSourceLocation
) -> HRESULT
pub unsafe fn get_spelling(&self, result: *mut LPSTR) -> HRESULT
pub unsafe fn get_category_text(&self, result: *mut LPSTR) -> HRESULT
pub unsafe fn get_num_ranges(&self, result: *mut u32) -> HRESULT
pub unsafe fn get_range_at(
&self,
index: u32,
result: *mut *mut IDxcSourceRange
) -> HRESULT
pub unsafe fn get_num_fix_its(&self, result: *mut u32) -> HRESULT
pub unsafe fn get_fix_it_at(
&self,
index: u32,
replacement_range: *mut *mut IDxcSourceRange,
text: *mut LPSTR
) -> HRESULT
Methods from Deref<Target = IUnknown>§
sourcepub unsafe fn query_interface(&self, iid: &IID, object: *mut *mut c_void) -> i32
pub unsafe fn query_interface(&self, iid: &IID, object: *mut *mut c_void) -> i32
Retrieves pointers to the supported interfaces on an object.
Use ComPtr::from
instead.