[][src]Struct jl_sys::_jl_code_info_t

#[repr(C)]pub struct _jl_code_info_t {
    pub code: *mut jl_array_t,
    pub codelocs: *mut jl_value_t,
    pub ssavaluetypes: *mut jl_value_t,
    pub ssaflags: *mut jl_array_t,
    pub method_for_inference_limit_heuristics: *mut jl_value_t,
    pub linetable: *mut jl_value_t,
    pub slotnames: *mut jl_array_t,
    pub slotflags: *mut jl_array_t,
    pub slottypes: *mut jl_value_t,
    pub rettype: *mut jl_value_t,
    pub parent: *mut jl_method_instance_t,
    pub edges: *mut jl_value_t,
    pub min_world: usize,
    pub max_world: usize,
    pub inferred: u8,
    pub inlineable: u8,
    pub propagate_inbounds: u8,
    pub pure_: u8,
}

Fields

code: *mut jl_array_tcodelocs: *mut jl_value_tssavaluetypes: *mut jl_value_tssaflags: *mut jl_array_tmethod_for_inference_limit_heuristics: *mut jl_value_tlinetable: *mut jl_value_tslotnames: *mut jl_array_tslotflags: *mut jl_array_tslottypes: *mut jl_value_trettype: *mut jl_value_tparent: *mut jl_method_instance_tedges: *mut jl_value_tmin_world: usizemax_world: usizeinferred: u8inlineable: u8propagate_inbounds: u8pure_: u8

Trait Implementations

impl Clone for _jl_code_info_t[src]

impl Copy for _jl_code_info_t[src]

impl Debug for _jl_code_info_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.