[][src]Struct rusty_v8::scope::Entered

#[repr(C)]
pub struct Entered<'s, S, P = ()> { /* fields omitted */ }

A wrapper around the an instantiated and entered scope object.

Methods

impl<'s, S, P> Entered<'s, S, P> where
    Self: InIsolate
[src]

pub fn isolate(&mut self) -> &mut Isolate[src]

impl<'s, 'p: 's, S, P> Entered<'s, S, P> where
    Self: EscapeLocal<'s, 'p>, 
[src]

pub fn escape<T>(&mut self, local: Local<T>) -> Local<'p, T>[src]

Trait Implementations

impl<'s, 'p: 's, P> EscapeLocal<'s, 'p> for Entered<'s, EscapableHandleScope, P> where
    P: ToLocalOrReturnsLocal<'p>, 
[src]

impl<'s, 'p: 's, P> EscapeLocal<'s, 'p> for Entered<'s, ContextScope, P> where
    P: EscapeLocal<'s, 'p>, 
[src]

impl<'s, 'p: 's, P> EscapeLocal<'s, 'p> for Entered<'s, HandleScope, P> where
    P: EscapeLocal<'s, 'p>, 
[src]

impl<'s> InContext for Entered<'s, FunctionCallbackInfo, ()>[src]

impl<'s> InContext for Entered<'s, PropertyCallbackInfo, ()>[src]

impl<'s, X> InContext for Entered<'s, CallbackScope<X>>[src]

impl<'s, P> InContext for Entered<'s, ContextScope, P>[src]

impl<'s, P> InContext for Entered<'s, HandleScope, P> where
    P: InContext
[src]

impl<'s, P> InContext for Entered<'s, EscapableHandleScope, P> where
    P: InContext
[src]

impl<'s, S, P> InIsolate for Entered<'s, S, P> where
    S: GetRawIsolate, 
[src]

impl<'s> ToLocal<'s> for Entered<'s, FunctionCallbackInfo>[src]

impl<'s> ToLocal<'s> for Entered<'s, PropertyCallbackInfo>[src]

impl<'s, P> ToLocal<'s> for Entered<'s, HandleScope, P>[src]

impl<'s, P> ToLocal<'s> for Entered<'s, EscapableHandleScope, P>[src]

impl<'s, P> ToLocal<'s> for Entered<'s, ContextScope, P> where
    P: ToLocal<'s>, 
[src]

impl<'s, 'p: 's> ToLocalOrReturnsLocal<'p> for Entered<'s, CallbackScope<Escapable>>[src]

Auto Trait Implementations

impl<'s, S, P> RefUnwindSafe for Entered<'s, S, P> where
    P: RefUnwindSafe,
    S: RefUnwindSafe

impl<'s, S, P = ()> !Send for Entered<'s, S, P>

impl<'s, S, P = ()> !Sync for Entered<'s, S, P>

impl<'s, S, P> Unpin for Entered<'s, S, P>

impl<'s, S, P = ()> !UnwindSafe for Entered<'s, S, P>

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.