Struct jlrs::frame::DynamicFrame[][src]

pub struct DynamicFrame<'frame, U> where
    U: Mode
{ /* fields omitted */ }

A DynamicFrame is a frame that has a dynamic number of slots on the GC stack. With some exceptions, creating new Values and calling them require one slot each. A DynamicFrame acquires a new slot every time one is needed. See the documentation in the value module for more information about the costs. You get access to a DynamicFrame by calling Julia::dynamic_frame or Frame::dynamic_frame, most of their functionality is defined in the Frame trait.

Trait Implementations

impl<'frame, U> Drop for DynamicFrame<'frame, U> where
    U: Mode
[src]

impl<'frame, M: Mode> Frame<'frame> for DynamicFrame<'frame, M>[src]

Auto Trait Implementations

impl<'frame, U> RefUnwindSafe for DynamicFrame<'frame, U> where
    U: RefUnwindSafe

impl<'frame, U> !Send for DynamicFrame<'frame, U>

impl<'frame, U> !Sync for DynamicFrame<'frame, U>

impl<'frame, U> Unpin for DynamicFrame<'frame, U> where
    U: Unpin

impl<'frame, U> !UnwindSafe for DynamicFrame<'frame, U>

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<'frame, T> Gc for T where
    T: Frame<'frame>, 
[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.