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: Box<CppType>
                           Return type of the function
arguments: Vec<CppType>
                           Arguments of the function
allows_variadic_arguments: bool
                           Whether arguments are terminated with "..."
Trait Implementations
impl Debug for CppFunctionPointerType[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for CppFunctionPointerType[src]
fn eq(&self, __arg_0: &CppFunctionPointerType) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CppFunctionPointerType) -> bool[src]
This method tests for !=.
impl Eq for CppFunctionPointerType[src]
impl Clone for CppFunctionPointerType[src]
fn clone(&self) -> CppFunctionPointerType[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more