[][src]Struct cbindgen::Builder

pub struct Builder { /* fields omitted */ }

A builder for generating a bindings header.

Methods

impl Builder[src]

pub fn new() -> Builder[src]

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

pub fn with_no_includes(self) -> Builder[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

Auto Trait Implementations

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

impl RefUnwindSafe for Builder

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]