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§
Source§impl Clone for ExportConfig
impl Clone for ExportConfig
Source§fn clone(&self) -> ExportConfig
fn clone(&self) -> ExportConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ExportConfig
impl Debug for ExportConfig
Source§impl Default for ExportConfig
impl Default for ExportConfig
Source§fn default() -> ExportConfig
fn default() -> ExportConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportConfigwhere
ExportConfig: Default,
impl<'de> Deserialize<'de> for ExportConfigwhere
ExportConfig: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExportConfig
impl RefUnwindSafe for ExportConfig
impl Send for ExportConfig
impl Sync for ExportConfig
impl Unpin for ExportConfig
impl UnwindSafe for ExportConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more