Struct pyo3_build_config::BuildFlags [−][src]
Expand description
A list of python interpreter compile-time preprocessor defines that
we will pick up and pass to rustc via --cfg=py_sys_config={varname}
;
this allows using them conditional cfg attributes in the .rs files, so
#[cfg(py_sys_config="{varname}")]
is the equivalent of #ifdef {varname}
in C.
see Misc/SpecialBuilds.txt in the python source for what these mean.
Tuple Fields
0: HashSet<BuildFlag>
Implementations
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for BuildFlags
impl Send for BuildFlags
impl Sync for BuildFlags
impl Unpin for BuildFlags
impl UnwindSafe for BuildFlags
Blanket Implementations
Mutably borrows from an owned value. Read more