Struct rusty_v8::ValueSerializer[][src]

pub struct ValueSerializer<'a, 's> { /* fields omitted */ }

Implementations

impl<'a, 's> ValueSerializer<'a, 's>[src]

ValueSerializer is a stack object used as entry-point for an owned and pinned heap object ValueSerializerHeap. The ’a lifetime is the lifetime of the ValueSerializerImpl implementation. The ’s lifetime is the lifetime of the HandleScope which is used to retrieve a Local<’s, Context> for the CallbackScopes

pub fn new<D: ValueSerializerImpl + 'a>(
    scope: &mut HandleScope<'s>,
    value_serializer_impl: Box<D>
) -> Self
[src]

impl<'a, 's> ValueSerializer<'a, 's>[src]

pub fn release(self) -> Vec<u8>[src]

pub fn write_value(
    &mut self,
    context: Local<'_, Context>,
    value: Local<'_, Value>
) -> Option<bool>
[src]

Trait Implementations

impl<'a, 's> ValueSerializerHelper for ValueSerializer<'a, 's>[src]

Auto Trait Implementations

impl<'a, 's> !RefUnwindSafe for ValueSerializer<'a, 's>

impl<'a, 's> !Send for ValueSerializer<'a, 's>

impl<'a, 's> !Sync for ValueSerializer<'a, 's>

impl<'a, 's> Unpin for ValueSerializer<'a, 's>

impl<'a, 's> !UnwindSafe for ValueSerializer<'a, 's>

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.