[][src]Struct bindgen::Bindings

pub struct Bindings { /* fields omitted */ }

Generated Rust bindings.

Implementations

impl Bindings[src]

pub fn to_string(&self) -> String[src]

Convert these bindings into source text (with raw lines prepended).

pub fn write_to_file<P: AsRef<Path>>(&self, path: P) -> Result<()>[src]

Write these bindings as source text to a file.

pub fn write<'a>(&self, writer: Box<dyn Write + 'a>) -> Result<()>[src]

Write these bindings as source text to the given Writeable.

Trait Implementations

impl Debug for Bindings[src]

Auto Trait Implementations

impl !RefUnwindSafe for Bindings

impl !Send for Bindings

impl !Sync for Bindings

impl Unpin for Bindings

impl UnwindSafe for Bindings

Blanket Implementations

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

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

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

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

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

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

type Error = Infallible

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.