Struct v8::ValueDeserializer

source ·
pub struct ValueDeserializer<'a, 's> { /* private fields */ }
Expand description

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

Implementations§

source§

impl<'a, 's> ValueDeserializer<'a, 's>

source

pub fn new<D: ValueDeserializerImpl + 'a>( scope: &mut HandleScope<'s>, value_deserializer_impl: Box<D>, data: &[u8] ) -> Self

source§

impl<'a, 's> ValueDeserializer<'a, 's>

source

pub fn set_supports_legacy_wire_format( &mut self, supports_legacy_wire_format: bool )

source

pub fn read_value<'t>( &mut self, context: Local<'t, Context> ) -> Option<Local<'t, Value>>

Trait Implementations§

source§

impl<'a, 's> ValueDeserializerHelper for ValueDeserializer<'a, 's>

source§

fn get_cxx_value_deserializer(&mut self) -> &mut CxxValueDeserializer

source§

fn read_header(&mut self, context: Local<'_, Context>) -> Option<bool>

source§

fn read_value<'s>( &mut self, context: Local<'s, Context> ) -> Option<Local<'s, Value>>

source§

fn read_uint32(&mut self, value: &mut u32) -> bool

source§

fn read_uint64(&mut self, value: &mut u64) -> bool

source§

fn read_double(&mut self, value: &mut f64) -> bool

source§

fn read_raw_bytes(&mut self, length: usize) -> Option<&[u8]>

source§

fn transfer_array_buffer( &mut self, transfer_id: u32, array_buffer: Local<'_, ArrayBuffer> )

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.