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

Whether the method is static.

The name of the method.

A mangled version of the method that makes it unique among all of the methods of its class.

The arguments that the method takes, in declaration order.

The return type of the method.

Trait Implementations

impl Debug for Method
[src]

Formats the value using the given formatter.

impl Display for Method
[src]

Formats the value using the given formatter.