[][src]Struct rusty_v8::SnapshotCreator

#[repr(C)]
pub struct SnapshotCreator(_);

Helper class to create a snapshot data blob.

Methods

impl SnapshotCreator[src]

pub fn new(external_references: Option<&'static ExternalReferences>) -> Self[src]

Create and enter an isolate, and set it up for serialization. The isolate is created from scratch.

impl SnapshotCreator[src]

pub fn set_default_context<'sc>(&mut self, context: Local<'sc, Context>)[src]

Set the default context to be included in the snapshot blob. The snapshot will not contain the global proxy, and we expect one or a global object template to create one, to be provided upon deserialization.

pub fn create_blob(
    &mut self,
    function_code_handling: FunctionCodeHandling
) -> Option<OwnedStartupData>
[src]

Creates a snapshot data blob. This must not be called from within a handle scope.

pub unsafe fn get_owned_isolate(&mut self) -> OwnedIsolate[src]

This is marked unsafe because it should be called at most once per snapshot creator.

Trait Implementations

impl Drop for SnapshotCreator[src]

Auto Trait Implementations

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.