Struct cbindgen::ExportConfig

source ·
pub struct ExportConfig {
    pub include: Vec<String>,
    pub exclude: Vec<String>,
    pub rename: HashMap<String, String>,
    pub prefix: Option<String>,
    pub item_types: Vec<ItemType>,
}
Expand description

Settings to apply when exporting items.

Fields§

§include: Vec<String>

A list of additional items not used by exported functions to include in the generated bindings

§exclude: Vec<String>

A list of items to not include in the generated bindings

§rename: HashMap<String, String>

Table of name conversions to apply to item names

§prefix: Option<String>

A prefix to add before the name of every item

§item_types: Vec<ItemType>

Types of items to generate.

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.