Enum bindgen::callbacks::MacroParsingBehavior[][src]

pub enum MacroParsingBehavior {
    Ignore,
    Default,
}

An enum to allow ignoring parsing of macros.

Variants

Ignore the macro, generating no code for it, or anything that depends on it.

The default behavior bindgen would have otherwise.

Trait Implementations

impl Copy for MacroParsingBehavior
[src]

impl Clone for MacroParsingBehavior
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MacroParsingBehavior
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MacroParsingBehavior
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for MacroParsingBehavior
[src]

impl Default for MacroParsingBehavior
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations