[][src]Struct v8_api::Method

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.

Trait Implementations

impl Debug for Method[src]

impl Display for Method[src]

Auto Trait Implementations

impl Send for Method

impl Sync for Method

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]