[][src]Struct rusty_v8::Function

#[repr(C)]
pub struct Function(_);

A JavaScript function object (ECMA-262, 15.3).

Methods

impl Function[src]

pub fn new<'sc>(
    scope: &mut impl ToLocal<'sc>,
    context: Local<Context>,
    callback: extern "C" fn(_: &FunctionCallbackInfo)
) -> Option<Local<'sc, Function>>
[src]

Create a function in the current execution context for a given FunctionCallback.

pub fn call<'sc>(
    &mut self,
    scope: &mut impl ToLocal<'sc>,
    context: Local<Context>,
    recv: Local<Value>,
    arc: i32,
    argv: Vec<Local<Value>>
) -> Option<Local<'sc, Value>>
[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.