[][src]Struct janet_ll::JanetFuncDef

#[repr(C)]
pub struct JanetFuncDef { pub gc: JanetGCObject, pub environments: *mut i32, pub constants: *mut Janet, pub defs: *mut *mut JanetFuncDef, pub bytecode: *mut u32, pub sourcemap: *mut JanetSourceMapping, pub source: *const u8, pub name: *const u8, pub flags: i32, pub slotcount: i32, pub arity: i32, pub min_arity: i32, pub max_arity: i32, pub constants_length: i32, pub bytecode_length: i32, pub environments_length: i32, pub defs_length: i32, }

Fields

gc: JanetGCObjectenvironments: *mut i32constants: *mut Janetdefs: *mut *mut JanetFuncDefbytecode: *mut u32sourcemap: *mut JanetSourceMappingsource: *const u8name: *const u8flags: i32slotcount: i32arity: i32min_arity: i32max_arity: i32constants_length: i32bytecode_length: i32environments_length: i32defs_length: i32

Trait Implementations

impl Copy for JanetFuncDef[src]

impl Clone for JanetFuncDef[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for JanetFuncDef[src]

Auto Trait Implementations

impl !Send for JanetFuncDef

impl !Sync for JanetFuncDef

Blanket Implementations

impl<T, U> Into 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> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.