[][src]Struct rusty_v8::EscapableHandleScope

pub struct EscapableHandleScope<'s, 'e: 's, C = Context> { /* fields omitted */ }

A HandleScope which first allocates a handle in the current scope which will be later filled with the escape value.

Implementations

impl<'s, 'e: 's> EscapableHandleScope<'s, 'e>[src]

pub fn new<P: NewEscapableHandleScope<'s, 'e>>(param: &'s mut P) -> P::NewScope[src]

impl<'s, 'e: 's, C> EscapableHandleScope<'s, 'e, C>[src]

pub fn escape<T>(&mut self, value: Local<T>) -> Local<'e, T> where
    Local<'l, T>: Into<Local<'l, Data>>, 
[src]

Pushes the value into the previous scope and returns a handle to it. Cannot be called twice.

Methods from Deref<Target = HandleScope<'s, ()>>

pub fn get_current_context(&self) -> Local<'s, Context>[src]

Returns the context of the currently running JavaScript, or the context on the top of the stack if no JavaScript is running.

pub fn get_entered_or_microtask_context(&self) -> Local<'s, Context>[src]

Returns either the last context entered through V8's C++ API, or the context of the currently running microtask while processing microtasks. If a context is entered while executing a microtask, that context is returned.

pub fn throw_exception(&mut self, exception: Local<Value>) -> Local<'s, Value>[src]

Schedules an exception to be thrown when returning to JavaScript. When an exception has been scheduled it is illegal to invoke any JavaScript operation; the caller must return immediately and only after the exception has been handled does it become legal to invoke JavaScript operations.

This function always returns the undefined value.

Trait Implementations

impl<'s, 'p, 'e> AsMut<EscapableHandleScope<'p, 'e, ()>> for ContextScope<'s, EscapableHandleScope<'p, 'e>>[src]

impl<'s, 'p, 'e, C> AsMut<EscapableHandleScope<'p, 'e, ()>> for TryCatch<'s, EscapableHandleScope<'p, 'e, C>>[src]

impl<'s, 'p, 'e> AsMut<EscapableHandleScope<'p, 'e, Context>> for ContextScope<'s, EscapableHandleScope<'p, 'e>>[src]

impl<'s, 'p, 'e> AsMut<EscapableHandleScope<'p, 'e, Context>> for TryCatch<'s, EscapableHandleScope<'p, 'e>>[src]

impl<'s, 'e, C> AsMut<EscapableHandleScope<'s, 'e, ()>> for EscapableHandleScope<'s, 'e, C>[src]

impl<'s, 'e> AsMut<EscapableHandleScope<'s, 'e, Context>> for EscapableHandleScope<'s, 'e>[src]

impl<'s, 'e, C> AsMut<HandleScope<'s, ()>> for EscapableHandleScope<'s, 'e, C>[src]

impl<'s, 'e> AsMut<HandleScope<'s, Context>> for EscapableHandleScope<'s, 'e>[src]

impl<'s, 'e, C> AsMut<Isolate> for EscapableHandleScope<'s, 'e, C>[src]

impl<'s, 'p, 'e> AsRef<EscapableHandleScope<'p, 'e, ()>> for ContextScope<'s, EscapableHandleScope<'p, 'e>>[src]

impl<'s, 'p, 'e, C> AsRef<EscapableHandleScope<'p, 'e, ()>> for TryCatch<'s, EscapableHandleScope<'p, 'e, C>>[src]

impl<'s, 'p, 'e> AsRef<EscapableHandleScope<'p, 'e, Context>> for ContextScope<'s, EscapableHandleScope<'p, 'e>>[src]

impl<'s, 'p, 'e> AsRef<EscapableHandleScope<'p, 'e, Context>> for TryCatch<'s, EscapableHandleScope<'p, 'e>>[src]

impl<'s, 'e, C> AsRef<EscapableHandleScope<'s, 'e, ()>> for EscapableHandleScope<'s, 'e, C>[src]

impl<'s, 'e> AsRef<EscapableHandleScope<'s, 'e, Context>> for EscapableHandleScope<'s, 'e>[src]

impl<'s, 'e, C> AsRef<HandleScope<'s, ()>> for EscapableHandleScope<'s, 'e, C>[src]

impl<'s, 'e> AsRef<HandleScope<'s, Context>> for EscapableHandleScope<'s, 'e>[src]

impl<'s, 'e, C> AsRef<Isolate> for EscapableHandleScope<'s, 'e, C>[src]

impl<'s, 'e> Deref for EscapableHandleScope<'s, 'e, ()>[src]

type Target = HandleScope<'s, ()>

The resulting type after dereferencing.

impl<'s, 'e> Deref for EscapableHandleScope<'s, 'e>[src]

type Target = HandleScope<'s>

The resulting type after dereferencing.

impl<'s, 'e> DerefMut for EscapableHandleScope<'s, 'e, ()>[src]

impl<'s, 'e> DerefMut for EscapableHandleScope<'s, 'e>[src]

impl<'s, 'e, C> Drop for EscapableHandleScope<'s, 'e, C>[src]

Auto Trait Implementations

impl<'s, 'e, C = Context> !RefUnwindSafe for EscapableHandleScope<'s, 'e, C>

impl<'s, 'e, C = Context> !Send for EscapableHandleScope<'s, 'e, C>

impl<'s, 'e, C = Context> !Sync for EscapableHandleScope<'s, 'e, C>

impl<'s, 'e, C> Unpin for EscapableHandleScope<'s, 'e, C>

impl<'s, 'e, C = Context> !UnwindSafe for EscapableHandleScope<'s, 'e, C>

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.