Struct chakracore::value::function::CallbackInfo [] [src]

pub struct CallbackInfo {
    pub is_construct_call: bool,
    pub arguments: Vec<Value>,
    pub callee: Value,
    pub this: Value,
}

The information passed to FunctionCallback closures.

Fields

Whether it's a constructor call or not.

Arguments supplied by the caller.

The source of this function call.

The function's this context.

Trait Implementations

impl Clone for CallbackInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CallbackInfo
[src]

Formats the value using the given formatter.