Enum interpreter::native::NativeFunction
source · pub enum NativeFunction {
Static(NativeStaticFunction),
Instance(NativeInstanceFunction),
}
Variants§
Static(NativeStaticFunction)
Instance(NativeInstanceFunction)
Trait Implementations§
source§impl Clone for NativeFunction
impl Clone for NativeFunction
source§fn clone(&self) -> NativeFunction
fn clone(&self) -> NativeFunction
Returns a copy 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 moreAuto Trait Implementations§
impl RefUnwindSafe for NativeFunction
impl Send for NativeFunction
impl Sync for NativeFunction
impl Unpin for NativeFunction
impl UnwindSafe for NativeFunction
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