Struct cbindgen::ParseConfig

source ·
pub struct ParseConfig {
    pub parse_deps: bool,
    pub include: Option<Vec<String>>,
    pub exclude: Vec<String>,
    pub expand: ParseExpandConfig,
    pub clean: bool,
}
Expand description

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.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.