[][src]Struct clang::CompilationDatabase

pub struct CompilationDatabase { /* fields omitted */ }

A compilation database of all information used to compile files in a project.

Implementations

impl CompilationDatabase[src]

pub fn from_directory<P: AsRef<Path>>(
    path: P
) -> Result<CompilationDatabase, ()>
[src]

Creates a compilation database from the database found in the given directory.

pub fn get_all_compile_commands(&self) -> CompileCommands[src]

Get all the compile commands from the database.

pub fn get_compile_commands<P: AsRef<Path>>(
    &self,
    path: P
) -> Result<CompileCommands, ()>
[src]

Find the compile commands for the given file.

Trait Implementations

impl Debug for CompilationDatabase[src]

impl Drop for CompilationDatabase[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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.