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

pub struct DynamicFrame<'frame> { /* 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> Drop for DynamicFrame<'frame>[src]

impl<'frame> Frame<'frame> for DynamicFrame<'frame>[src]

Auto Trait Implementations

impl<'frame> RefUnwindSafe for DynamicFrame<'frame>

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

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

impl<'frame> Unpin for DynamicFrame<'frame>

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

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.