[][src]Struct rquickjs::Function

pub struct Function<'js>(_);

Methods

impl<'js> Function<'js>[src]

pub fn call<A, R>(&self, args: A) -> Result<R> where
    A: ToJsMulti<'js>,
    R: FromJs<'js>, 
[src]

Call a function with given arguments

pub fn to_object(self) -> Object<'js>[src]

Trait Implementations

impl<'js> Clone for Function<'js>[src]

impl<'js> Debug for Function<'js>[src]

impl<'js> FromJs<'js> for Function<'js>[src]

impl<'js> PartialEq<Function<'js>> for Function<'js>[src]

impl<'js> StructuralPartialEq for Function<'js>[src]

Auto Trait Implementations

impl<'js> !RefUnwindSafe for Function<'js>

impl<'js> !Send for Function<'js>

impl<'js> !Sync for Function<'js>

impl<'js> Unpin for Function<'js>

impl<'js> UnwindSafe for Function<'js>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.