Struct cpp_to_rust_generator::cpp_type::CppFunctionPointerType [] [src]

pub struct CppFunctionPointerType {
    pub return_type: Box<CppType>,
    pub arguments: Vec<CppType>,
    pub allows_variadic_arguments: bool,
}

Information about a C++ function pointer type

Fields

Return type of the function

Arguments of the function

Whether arguments are terminated with "..."

Trait Implementations

impl Debug for CppFunctionPointerType
[src]

[src]

Formats the value using the given formatter. Read more

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

impl Clone for CppFunctionPointerType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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