pub struct BuiltInFunction(/* private fields */);
Trait Implementations§
Source§impl Clone for BuiltInFunction
impl Clone for BuiltInFunction
Source§fn clone(&self) -> BuiltInFunction
fn clone(&self) -> BuiltInFunction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BuiltInFunction
impl Debug for BuiltInFunction
Source§impl From<fn(&JsValue, &[JsValue], &mut Context) -> Result<JsValue, JsValue>> for BuiltInFunction
impl From<fn(&JsValue, &[JsValue], &mut Context) -> Result<JsValue, JsValue>> for BuiltInFunction
Source§fn from(function: NativeFunction) -> Self
fn from(function: NativeFunction) -> Self
Converts to this type from the input type.
Source§impl Trace for BuiltInFunction
impl Trace for BuiltInFunction
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
impl Copy for BuiltInFunction
Auto Trait Implementations§
impl Freeze for BuiltInFunction
impl RefUnwindSafe for BuiltInFunction
impl Send for BuiltInFunction
impl Sync for BuiltInFunction
impl Unpin for BuiltInFunction
impl UnwindSafe for BuiltInFunction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more