[][src]Struct hassle_rs::intellisense::IDxcIntelliSense

#[repr(C)]pub struct IDxcIntelliSense { /* fields omitted */ }

Implementations

impl IDxcIntelliSense[src]

pub unsafe fn create_index(&self, index: *mut *mut IDxcIndex) -> HRESULT[src]

pub unsafe fn get_null_location(
    &self,
    location: *mut *mut IDxcSourceLocation
) -> HRESULT
[src]

pub unsafe fn get_null_range(
    &self,
    location: *mut *mut IDxcSourceRange
) -> HRESULT
[src]

pub unsafe fn get_range(
    &self,
    start: *const IDxcSourceLocation,
    end: *const IDxcSourceLocation,
    location: *mut *mut IDxcSourceRange
) -> HRESULT
[src]

pub unsafe fn get_default_diagnostic_display_options(
    &self,
    value: *mut DxcDiagnosticDisplayOptions
) -> HRESULT
[src]

pub unsafe fn get_default_editing_tu_options(
    &self,
    value: *mut DxcTranslationUnitFlags
) -> HRESULT
[src]

pub unsafe fn create_unsaved_file(
    &self,
    file_name: LPCSTR,
    contents: LPCSTR,
    content_length: u32,
    result: *mut *mut IDxcUnsavedFile
) -> HRESULT
[src]

Trait Implementations

impl AsComPtr<IDxcIntelliSense> for IDxcIntelliSense[src]

impl AsComPtr<IUnknown> for IDxcIntelliSense[src]

impl ComInterface for IDxcIntelliSense[src]

impl Debug for IDxcIntelliSense[src]

impl Deref for IDxcIntelliSense[src]

type Target = IDxcUnknownShim

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsComPtr<c_void> for T where
    T: ComInterface
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.