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

#[repr(transparent)]
pub struct Entered<'s, S>(_, _);

A wrapper around the an instantiated and entered scope object.

Trait Implementations

impl<'s, S> Deref for Entered<'s, S>[src]

type Target = S

The resulting type after dereferencing.

impl<'s, S> DerefMut for Entered<'s, S>[src]

impl<'s, S> From<S> for Entered<'s, S>[src]

impl<'s, T> InIsolate for Entered<'s, CallbackScope<'s, T>> where
    T: GetIsolate, 
[src]

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

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

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

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

Auto Trait Implementations

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

impl<'s, S> Send for Entered<'s, S> where
    S: Send

impl<'s, S> Sync for Entered<'s, S> where
    S: Sync

impl<'s, S> Unpin for Entered<'s, S> where
    S: Unpin

impl<'s, S> UnwindSafe for Entered<'s, S> where
    S: UnwindSafe

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<!> for T[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.