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
is_construct_call: bool
Whether it's a constructor call or not.
arguments: Vec<Value>
Arguments supplied by the caller.
callee: Value
The source of this function call.
this: Value
The function's this
context.
Trait Implementations
impl Clone for CallbackInfo
[src]
fn clone(&self) -> CallbackInfo
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more