Struct cpp_to_rust_generator::cpp_data::CppClassUsingDirective [] [src]

pub struct CppClassUsingDirective {
    pub class_name: String,
    pub method_name: String,
}

A "using" directive inside a class definition, indicating that the class should inherite a certain method of a base class.

Fields

Name of the base class

Name of the method

Trait Implementations

impl Debug for CppClassUsingDirective
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for CppClassUsingDirective
[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 CppClassUsingDirective
[src]

impl Clone for CppClassUsingDirective
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Hash for CppClassUsingDirective
[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