[][src]Struct clang_sys::IndexerCallbacks

#[repr(C)]
pub struct IndexerCallbacks {
    pub abortQuery: extern "C" fn(_: CXClientData, _: *mut c_void) -> c_int,
    pub diagnostic: extern "C" fn(_: CXClientData, _: CXDiagnosticSet, _: *mut c_void),
    pub enteredMainFile: extern "C" fn(_: CXClientData, _: CXFile, _: *mut c_void) -> CXIdxClientFile,
    pub ppIncludedFile: extern "C" fn(_: CXClientData, _: *const CXIdxIncludedFileInfo) -> CXIdxClientFile,
    pub importedASTFile: extern "C" fn(_: CXClientData, _: *const CXIdxImportedASTFileInfo) -> CXIdxClientASTFile,
    pub startedTranslationUnit: extern "C" fn(_: CXClientData, _: *mut c_void) -> CXIdxClientContainer,
    pub indexDeclaration: extern "C" fn(_: CXClientData, _: *const CXIdxDeclInfo),
    pub indexEntityReference: extern "C" fn(_: CXClientData, _: *const CXIdxEntityRefInfo),
}

Fields

abortQuery: extern "C" fn(_: CXClientData, _: *mut c_void) -> c_intdiagnostic: extern "C" fn(_: CXClientData, _: CXDiagnosticSet, _: *mut c_void)enteredMainFile: extern "C" fn(_: CXClientData, _: CXFile, _: *mut c_void) -> CXIdxClientFileppIncludedFile: extern "C" fn(_: CXClientData, _: *const CXIdxIncludedFileInfo) -> CXIdxClientFileimportedASTFile: extern "C" fn(_: CXClientData, _: *const CXIdxImportedASTFileInfo) -> CXIdxClientASTFilestartedTranslationUnit: extern "C" fn(_: CXClientData, _: *mut c_void) -> CXIdxClientContainerindexDeclaration: extern "C" fn(_: CXClientData, _: *const CXIdxDeclInfo)indexEntityReference: extern "C" fn(_: CXClientData, _: *const CXIdxEntityRefInfo)

Trait Implementations

impl Clone for IndexerCallbacks[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for IndexerCallbacks[src]

impl Copy for IndexerCallbacks[src]

impl Debug for IndexerCallbacks[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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