Enum cpp_to_rust_generator::cpp_type::CppSpecificNumericTypeKind [] [src]

pub enum CppSpecificNumericTypeKind {
    Integer {
        is_signed: bool,
    },
    FloatingPoint,
}

Information about a fixed-size primitive type

Variants

Fields of Integer

Trait Implementations

impl Debug for CppSpecificNumericTypeKind
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for CppSpecificNumericTypeKind
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for CppSpecificNumericTypeKind
[src]

impl Clone for CppSpecificNumericTypeKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Hash for CppSpecificNumericTypeKind
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations