[][src]Trait rusty_v8::ToLocal

pub trait ToLocal<'s>: InIsolate {
    unsafe fn to_local<T>(&mut self, ptr: *mut T) -> Option<Local<'s, T>> { ... }
}

When scope implements this trait, this means that it Local handles can be created inside it.

Provided methods

unsafe fn to_local<T>(&mut self, ptr: *mut T) -> Option<Local<'s, T>>

Loading content...

Implementors

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

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

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

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

Loading content...