[][src]Struct evil_janet::JanetFiber

#[repr(C)]pub struct JanetFiber {
    pub gc: JanetGCObject,
    pub flags: i32,
    pub frame: i32,
    pub stackstart: i32,
    pub stacktop: i32,
    pub capacity: i32,
    pub maxstack: i32,
    pub env: *mut JanetTable,
    pub data: *mut Janet,
    pub child: *mut JanetFiber,
    pub waiting: *mut JanetListenerState,
    pub sched_id: u32,
}

Fields

gc: JanetGCObjectflags: i32frame: i32stackstart: i32stacktop: i32capacity: i32maxstack: i32env: *mut JanetTabledata: *mut Janetchild: *mut JanetFiberwaiting: *mut JanetListenerStatesched_id: u32

Trait Implementations

impl Clone for JanetFiber[src]

impl Copy for JanetFiber[src]

impl Debug for JanetFiber[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.