Struct cbindgen::Builder

source ·
pub struct Builder { /* private fields */ }
Expand description

A builder for generating a bindings header.

Implementations§

source§

impl Builder

source

pub fn new() -> Builder

source

pub fn with_header<S: AsRef<str>>(self, header: S) -> Builder

source

pub fn with_no_includes(self) -> Builder

source

pub fn with_include<S: AsRef<str>>(self, include: S) -> Builder

source

pub fn with_sys_include<S: AsRef<str>>(self, include: S) -> Builder

source

pub fn with_after_include<S: AsRef<str>>(self, line: S) -> Builder

source

pub fn with_trailer<S: AsRef<str>>(self, trailer: S) -> Builder

source

pub fn with_include_guard<S: AsRef<str>>(self, include_guard: S) -> Builder

source

pub fn with_pragma_once(self, pragma_once: bool) -> Builder

source

pub fn with_autogen_warning<S: AsRef<str>>(self, autogen_warning: S) -> Builder

source

pub fn with_include_version(self, include_version: bool) -> Builder

source

pub fn with_namespace<S: AsRef<str>>(self, namespace: S) -> Builder

source

pub fn with_namespaces<S: AsRef<str>>(self, namespaces: &[S]) -> Builder

source

pub fn with_using_namespaces<S: AsRef<str>>(self, namespaces: &[S]) -> Builder

source

pub fn with_braces(self, braces: Braces) -> Builder

source

pub fn with_line_length(self, line_length: usize) -> Builder

source

pub fn with_tab_width(self, tab_width: usize) -> Builder

source

pub fn with_language(self, language: Language) -> Builder

source

pub fn with_cpp_compat(self, cpp_compat: bool) -> Builder

source

pub fn with_style(self, style: Style) -> Builder

source

pub fn include_item<S: AsRef<str>>(self, item_name: S) -> Builder

source

pub fn exclude_item<S: AsRef<str>>(self, item_name: S) -> Builder

source

pub fn rename_item<S: AsRef<str>>(self, from: S, to: S) -> Builder

source

pub fn with_item_prefix<S: AsRef<str>>(self, prefix: S) -> Builder

source

pub fn with_parse_deps(self, parse_deps: bool) -> Builder

source

pub fn with_parse_include<S: AsRef<str>>(self, include: &[S]) -> Builder

source

pub fn with_parse_exclude<S: AsRef<str>>(self, exclude: &[S]) -> Builder

source

pub fn with_parse_expand<S: AsRef<str>>(self, expand: &[S]) -> Builder

source

pub fn with_parse_expand_all_features( self, expand_all_features: bool ) -> Builder

source

pub fn with_parse_expand_default_features( self, expand_default_features: bool ) -> Builder

source

pub fn with_parse_expand_features<S: AsRef<str>>( self, expand_features: &[S] ) -> Builder

source

pub fn with_parse_expand_profile(self, profile: Profile) -> Builder

source

pub fn with_parse_extra_bindings<S: AsRef<str>>( self, extra_bindings: &[S] ) -> Builder

source

pub fn with_only_target_dependencies( self, only_target_dependencies: bool ) -> Builder

source

pub fn with_documentation(self, documentation: bool) -> Builder

source

pub fn with_target_os_define( self, platform: &str, preprocessor_define: &str ) -> Builder

source

pub fn with_define( self, key: &str, value: &str, preprocessor_define: &str ) -> Builder

source

pub fn with_config(self, config: Config) -> Builder

source

pub fn with_std_types(self, std_types: bool) -> Builder

source

pub fn with_src<P: AsRef<Path>>(self, src: P) -> Builder

source

pub fn with_crate<P: AsRef<Path>>(self, lib_dir: P) -> Builder

source

pub fn with_crate_and_name<P: AsRef<Path>, S: AsRef<str>>( self, lib_dir: P, binding_lib_name: S ) -> Builder

source

pub fn with_lockfile<P: AsRef<Path>>(self, lockfile: P) -> Builder

source

pub fn generate(self) -> Result<Bindings, Error>

Trait Implementations§

source§

impl Clone for Builder

source§

fn clone(&self) -> Builder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Builder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.