pub struct Invocation {
pub mv8: MiniV8,
pub this: Value,
pub args: Values,
}
Expand description
A bundle of information about an invocation of a function that has been embedded from Rust into JavaScript.
Fields§
§mv8: MiniV8
The MiniV8
within which the function was called.
this: Value
The value of the function invocation’s this
binding.
args: Values
The list of arguments with which the function was called.
Auto Trait Implementations§
impl Freeze for Invocation
impl !RefUnwindSafe for Invocation
impl !Send for Invocation
impl !Sync for Invocation
impl Unpin for Invocation
impl !UnwindSafe for Invocation
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