Enum bindgen::callbacks::EnumVariantCustomBehavior [] [src]

pub enum EnumVariantCustomBehavior {
    ModuleConstify,
    Constify,
    Hide,
}

An enum representing custom handling that can be given to a variant.

Variants

This variant will be a module containing constants.

This variant will be constified, that is, forced to generate a constant.

This variant will be hidden entirely from the resulting enum.

Trait Implementations

impl Copy for EnumVariantCustomBehavior
[src]

impl Clone for EnumVariantCustomBehavior
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EnumVariantCustomBehavior
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for EnumVariantCustomBehavior
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for EnumVariantCustomBehavior
[src]

Auto Trait Implementations