Struct cbindgen::ExportConfig[][src]

pub struct ExportConfig {
    pub include: Vec<String>,
    pub exclude: Vec<String>,
    pub rename: HashMap<String, String>,
    pub pre_body: HashMap<String, String>,
    pub body: HashMap<String, String>,
    pub prefix: Option<String>,
    pub item_types: Vec<ItemType>,
    pub renaming_overrides_prefixing: bool,
    pub mangle: MangleConfig,
}
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

pre_body: HashMap<String, String>

Table of raw strings to prepend to the body of items.

body: HashMap<String, String>

Table of raw strings to append to the body of items.

prefix: Option<String>

A prefix to add before the name of every item

item_types: Vec<ItemType>

Types of items to generate.

renaming_overrides_prefixing: bool

Whether renaming overrides or extends prefixing.

mangle: MangleConfig

Mangling configuration.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.