Struct bindgen::CargoCallbacks
source · pub struct CargoCallbacks;
Expand description
A ParseCallbacks implementation that will act on file includes by echoing a rerun-if-changed line
When running inside a build.rs
script, this can be used to make cargo invalidate the
generated bindings whenever any of the files included from the header change:
use bindgen::builder;
let bindings = builder()
.header("path/to/input/header")
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.generate();
Trait Implementations§
source§impl Debug for CargoCallbacks
impl Debug for CargoCallbacks
source§impl ParseCallbacks for CargoCallbacks
impl ParseCallbacks for CargoCallbacks
source§fn include_file(&self, filename: &str)
fn include_file(&self, filename: &str)
This will be called on every file inclusion, with the full path of the included file.
source§fn will_parse_macro(&self, _name: &str) -> MacroParsingBehavior
fn will_parse_macro(&self, _name: &str) -> MacroParsingBehavior
This function will be run on every macro that is identified.
source§fn generated_name_override(&self, _function_name: &str) -> Option<String>
fn generated_name_override(&self, _function_name: &str) -> Option<String>
This function will run for every function. The returned value determines the name visible
in the bindings.
source§fn int_macro(&self, _name: &str, _value: i64) -> Option<IntKind>
fn int_macro(&self, _name: &str, _value: i64) -> Option<IntKind>
The integer kind an integer macro should have, given a name and the
value of that macro, or
None
if you want the default to be chosen.source§fn str_macro(&self, _name: &str, _value: &[u8])
fn str_macro(&self, _name: &str, _value: &[u8])
This will be run on every string macro. The callback cannot influence the further
treatment of the macro, but may use the value to generate additional code or configuration.
source§fn func_macro(&self, _name: &str, _value: &[&[u8]])
fn func_macro(&self, _name: &str, _value: &[&[u8]])
This will be run on every function-like macro. The callback cannot
influence the further treatment of the macro, but may use the value to
generate additional code or configuration. Read more
source§fn enum_variant_behavior(
&self,
_enum_name: Option<&str>,
_original_variant_name: &str,
_variant_value: EnumVariantValue,
) -> Option<EnumVariantCustomBehavior>
fn enum_variant_behavior( &self, _enum_name: Option<&str>, _original_variant_name: &str, _variant_value: EnumVariantValue, ) -> Option<EnumVariantCustomBehavior>
This function should return whether, given an enum variant
name, and value, this enum variant will forcibly be a constant.
source§fn enum_variant_name(
&self,
_enum_name: Option<&str>,
_original_variant_name: &str,
_variant_value: EnumVariantValue,
) -> Option<String>
fn enum_variant_name( &self, _enum_name: Option<&str>, _original_variant_name: &str, _variant_value: EnumVariantValue, ) -> Option<String>
Allows to rename an enum variant, replacing
_original_variant_name
.source§fn item_name(&self, _original_item_name: &str) -> Option<String>
fn item_name(&self, _original_item_name: &str) -> Option<String>
Allows to rename an item, replacing
_original_item_name
.source§fn blocklisted_type_implements_trait(
&self,
_name: &str,
_derive_trait: DeriveTrait,
) -> Option<ImplementsTrait>
fn blocklisted_type_implements_trait( &self, _name: &str, _derive_trait: DeriveTrait, ) -> Option<ImplementsTrait>
This will be called to determine whether a particular blocklisted type
implements a trait or not. This will be used to implement traits on
other types containing the blocklisted type. Read more
source§fn add_derives(&self, _info: &DeriveInfo<'_>) -> Vec<String>
fn add_derives(&self, _info: &DeriveInfo<'_>) -> Vec<String>
Provide a list of custom derive attributes. Read more
Auto Trait Implementations§
impl Freeze for CargoCallbacks
impl RefUnwindSafe for CargoCallbacks
impl Send for CargoCallbacks
impl Sync for CargoCallbacks
impl Unpin for CargoCallbacks
impl UnwindSafe for CargoCallbacks
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more