Struct artichoke::prelude::Guard

source ·
pub struct Guard<'a>(/* private fields */);
Expand description

Interpreter guard that prepares an Artichoke to re-enter an FFI boundary.

Artichoke integrates with the mruby VM via many extern "C" fn trampolines that are invoked by mruby to run some portion of the VM in Rust.

These trampolines typically require an Artichoke interpreter to do useful work, so they move the State out of the mrb userdata pointer into an Artichoke struct.

To ensure safety, the State must be moved back into the mrb userdata pointer before re-entering the FFI boundary. This guard implements Drop to re-serialize the State into the mrb once it goes out of scope.

Guard is passed directly to error::raise.

Implementations§

source§

impl<'a> Guard<'a>

source

pub fn new(interp: &'a mut Artichoke) -> Guard<'a>

Create a new guard that wraps an interpreter.

This function is most effective when the interpreter is temporarily created from a source mrb_state and stored on the stack.

source

pub fn interp(&mut self) -> &mut Artichoke

Access the inner guarded interpreter.

The interpreter is also accessible via Deref, DerefMut, AsRef, and AsMut.

Methods from Deref<Target = Artichoke>§

source

pub fn protect(&mut self, value: Value) -> Value

Prevent the given value from being garbage collected.

Calls sys::mrb_gc_protect on this value which adds it to the GC arena. This object will remain in the arena until ArenaIndex::restore restores the arena to an index before this call to protect.

source

pub unsafe fn with_ffi_boundary<F, T>( &mut self, func: F ) -> Result<T, InterpreterExtractError>
where F: FnOnce(*mut mrb_state) -> T,

Execute a a closure by moving the State into the mrb instance.

This method prepares this interpreter to cross an FFI boundary. When the Artichoke implementation calls mruby FFI functions, the State must be moved into the sys::mrb_state userdata pointer.

§Safety

This method moves the State out of this instance into the mrb instance. During this function’s execution, this instance may be partially initialized.

This function is only safe to call if the closure only calls FFI functions that use a raw *mut sys::mrb_state.

source

pub fn lookup_symbol_with_trailing_nul( &self, symbol: u32 ) -> Result<Option<&[u8]>, Error>

source

pub fn intern_bytes_with_trailing_nul<T>( &mut self, bytes: T ) -> Result<u32, Error>
where T: Into<Cow<'static, [u8]>>,

source

pub fn check_interned_bytes_with_trailing_nul( &self, bytes: &[u8] ) -> Result<Option<u32>, Error>

Trait Implementations§

source§

impl<'a> Debug for Guard<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> Deref for Guard<'a>

§

type Target = Artichoke

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Guard<'a> as Deref>::Target

Dereferences the value.
source§

impl<'a> DerefMut for Guard<'a>

source§

fn deref_mut(&mut self) -> &mut <Guard<'a> as Deref>::Target

Mutably dereferences the value.
source§

impl<'a> Drop for Guard<'a>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Guard<'a>

§

impl<'a> RefUnwindSafe for Guard<'a>

§

impl<'a> !Send for Guard<'a>

§

impl<'a> !Sync for Guard<'a>

§

impl<'a> Unpin for Guard<'a>

§

impl<'a> !UnwindSafe for Guard<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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.