Struct cpp_to_rust::cpp_data::CppBaseSpecifier [] [src]

pub struct CppBaseSpecifier {
    pub base_type: CppType,
    pub is_virtual: bool,
    pub visibility: CppVisibility,
}

Item of base class list in a class declaration

Fields

Base class type (can include template arguments)

True if this base is virtual

Base visibility (public, protected or private)

Trait Implementations

impl Hash for CppBaseSpecifier
[src]

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

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

impl Clone for CppBaseSpecifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for CppBaseSpecifier
[src]

impl PartialEq for CppBaseSpecifier
[src]

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

This method tests for !=.

impl Debug for CppBaseSpecifier
[src]

Formats the value using the given formatter.