Struct v8_api::Method 
                   
                       [−]
                   
               [src]
pub struct Method {
    pub is_static: bool,
    pub name: String,
    pub mangled_name: String,
    pub args: Vec<Arg>,
    pub ret_type: RetType,
}A C++ method
Fields
is_static: bool
                           Whether the method is static.
name: String
                           The name of the method.
mangled_name: String
                           A mangled version of the method that makes it unique among all of the methods of its class.
args: Vec<Arg>
                           The arguments that the method takes, in declaration order.
ret_type: RetType
                           The return type of the method.