Struct jlrs::frame::AsyncFrame[][src]

pub struct AsyncFrame<'frame> { /* fields omitted */ }

An AsyncFrame is a special kind of DynamicFrame that’s available when you implement JuliaTask. In addition to the capabilities of a DynamicFrame it can be used to call Value::call_async which lets you call a function in a new thread in Julia. This feature is only available by using AsyncJulia.

Trait Implementations

impl<'frame> Drop for AsyncFrame<'frame>[src]

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

Auto Trait Implementations

impl<'frame> RefUnwindSafe for AsyncFrame<'frame>

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

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

impl<'frame> Unpin for AsyncFrame<'frame>

impl<'frame> !UnwindSafe for AsyncFrame<'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<'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.