Struct hassle_rs::intellisense::IDxcCursor
source · [−]#[repr(C)]pub struct IDxcCursor { /* private fields */ }
Implementations
sourceimpl IDxcCursor
impl IDxcCursor
pub unsafe fn get_extent(&self, range: *mut *mut IDxcSourceRange) -> HRESULT
pub unsafe fn get_location(
&self,
result: *mut *mut IDxcSourceLocation
) -> HRESULT
pub unsafe fn get_kind(&self, result: *mut DxcCursorKind) -> HRESULT
pub unsafe fn get_kind_flags(&self, result: *mut DxcCursorKindFlags) -> HRESULT
pub unsafe fn get_semantic_parent(
&self,
result: *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_lexical_parent(&self, result: *mut *mut IDxcCursor) -> HRESULT
pub unsafe fn get_cursor_type(&self, result: *mut *mut IDxcType) -> HRESULT
pub unsafe fn get_num_arguments(&self, result: *mut i32) -> HRESULT
pub unsafe fn get_argument_at(
&self,
index: i32,
result: *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_referenced_cursor(
&self,
result: *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_definition_cursor(
&self,
result: *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn find_references_in_file(
&self,
file: *const IDxcFile,
skip: u32,
top: u32,
result_length: *mut u32,
result: *mut *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_spelling(&self, result: *mut LPSTR) -> HRESULT
pub unsafe fn is_equal_to(
&self,
other: *const IDxcCursor,
result: *mut bool
) -> HRESULT
pub unsafe fn is_null(&self, result: *mut bool) -> HRESULT
pub unsafe fn is_definition(&self, result: *mut bool) -> HRESULT
pub unsafe fn get_display_name(&self, result: *mut BSTR) -> HRESULT
pub unsafe fn get_qualified_name(
&self,
include_template_args: bool,
result: *mut BSTR
) -> HRESULT
pub unsafe fn get_formatted_name(
&self,
formatting: DxcCursorFormatting,
result: *mut BSTR
) -> HRESULT
pub unsafe fn get_children(
&self,
skip: u32,
top: u32,
result_length: *mut u32,
result: *mut *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_snapped_child(
&self,
location: *const IDxcSourceLocation,
result: *mut *mut IDxcCursor
) -> HRESULT
Trait Implementations
sourceimpl ComInterface for IDxcCursor
impl ComInterface for IDxcCursor
sourceimpl Debug for IDxcCursor
impl Debug for IDxcCursor
sourceimpl Deref for IDxcCursor
impl Deref for IDxcCursor
impl AsComPtr<IDxcCursor> for IDxcCursor
impl AsComPtr<IUnknown> for IDxcCursor
Auto Trait Implementations
impl RefUnwindSafe for IDxcCursor
impl !Send for IDxcCursor
impl !Sync for IDxcCursor
impl Unpin for IDxcCursor
impl UnwindSafe for IDxcCursor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more