#[repr(C)]pub struct ReturnValue<'cb>(/* private fields */);Implementations§
Source§impl<'cb> ReturnValue<'cb>
In V8 ReturnValue<> has a type parameter, but
it turns out that in most of the APIs it’s ReturnValue
and for our purposes we currently don’t need
other types. So for now it’s a simplified version.
impl<'cb> ReturnValue<'cb>
In V8 ReturnValue<> has a type parameter, but
it turns out that in most of the APIs it’s ReturnValue
Trait Implementations§
Auto Trait Implementations§
impl<'cb> Freeze for ReturnValue<'cb>
impl<'cb> RefUnwindSafe for ReturnValue<'cb>
impl<'cb> !Send for ReturnValue<'cb>
impl<'cb> !Sync for ReturnValue<'cb>
impl<'cb> Unpin for ReturnValue<'cb>
impl<'cb> UnwindSafe for ReturnValue<'cb>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more