[][src]Struct cbindgen::ParseConfig

pub struct ParseConfig {
    pub parse_deps: bool,
    pub include: Option<Vec<String>>,
    pub exclude: Vec<String>,
    pub expand: ParseExpandConfig,
    pub clean: bool,
    pub extra_bindings: Vec<String>,
}

Settings to apply when parsing.

Fields

parse_deps: bool

Whether to parse dependencies when generating bindings. When this is true, each dependent crate is found using a combination of cargo metadata and Cargo.lock. To further control this behavior, crates can be whitelisted or blacklisted using include and exclude respectively. Additionally in cases where crates have types to expose in bindings hidden in macros, a crate can be marked in expand and cargo expand will be used to expand the macros before parsing. A crate marked in expand doesn't need to be added to any whitelist.

include: Option<Vec<String>>

An optional whitelist of names of crates to parse

exclude: Vec<String>

The names of crates to not parse

expand: ParseExpandConfig

The configuration options for rustc --pretty=expanded

clean: bool

Whether to use a new temporary target directory when running rustc --pretty=expanded. This may be required for some build processes.

extra_bindings: Vec<String>

List of crate names which generate consts, statics, and fns. By default no dependent crates generate them.

Trait Implementations

impl Clone for ParseConfig[src]

impl Default for ParseConfig[src]

impl Debug for ParseConfig[src]

impl<'de> Deserialize<'de> for ParseConfig where
    ParseConfig: Default
[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]