[][src]Trait rusty_v8::scope::Scoped

pub unsafe trait Scoped<'s> where
    Self: Sized
{ type Args; fn enter_scope(buf: &mut MaybeUninit<Self>, args: Self::Args); }

A trait for defining scoped objects.

Associated Types

type Args

Loading content...

Required methods

fn enter_scope(buf: &mut MaybeUninit<Self>, args: Self::Args)

Loading content...

Implementors

impl<'s> Scoped<'s> for EscapableHandleScope[src]

type Args = &'s mut Isolate

impl<'s> Scoped<'s> for HandleScope[src]

type Args = &'s mut Isolate

impl<'s, T> Scoped<'s> for CallbackScope<'s, T>[src]

type Args = Local<'s, T>

Loading content...