[][src]Struct jl_sys::_jl_code_instance_t

#[repr(C)]pub struct _jl_code_instance_t {
    pub def: *mut jl_method_instance_t,
    pub next: *mut _jl_code_instance_t,
    pub min_world: usize,
    pub max_world: usize,
    pub rettype: *mut jl_value_t,
    pub rettype_const: *mut jl_value_t,
    pub inferred: *mut jl_value_t,
    pub invoke: jl_callptr_t,
    pub specptr: jl_generic_specptr_t,
    pub functionObjectsDecls: jl_llvm_functions_t,
}

Fields

def: *mut jl_method_instance_tnext: *mut _jl_code_instance_tmin_world: usizemax_world: usizerettype: *mut jl_value_trettype_const: *mut jl_value_tinferred: *mut jl_value_tinvoke: jl_callptr_tspecptr: jl_generic_specptr_tfunctionObjectsDecls: jl_llvm_functions_t

Trait Implementations

impl Clone for _jl_code_instance_t[src]

impl Copy for _jl_code_instance_t[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.