Struct cbindgen::ExportConfig [] [src]

pub struct ExportConfig {
    pub include: Vec<String>,
    pub exclude: Vec<String>,
    pub rename: HashMap<String, String>,
    pub prefix: Option<String>,
}

Settings to apply when exporting items.

Fields

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

A list of items to not include in the generated bindings

Table of name conversions to apply to item names

A prefix to add before the name of every item

Trait Implementations

impl Debug for ExportConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ExportConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for ExportConfig
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for ExportConfig

impl Sync for ExportConfig