[][src]Struct jl_sys::_jl_module_t

#[repr(C)]pub struct _jl_module_t {
    pub name: *mut jl_sym_t,
    pub parent: *mut _jl_module_t,
    pub bindings: htable_t,
    pub usings: arraylist_t,
    pub build_id: u64,
    pub uuid: jl_uuid_t,
    pub primary_world: usize,
    pub counter: u32,
    pub nospecialize: i32,
    pub optlevel: i32,
    pub istopmod: u8,
    pub lock: jl_mutex_t,
}

Fields

name: *mut jl_sym_tparent: *mut _jl_module_tbindings: htable_tusings: arraylist_tbuild_id: u64uuid: jl_uuid_tprimary_world: usizecounter: u32nospecialize: i32optlevel: i32istopmod: u8lock: jl_mutex_t

Trait Implementations

impl Clone for _jl_module_t[src]

impl Copy for _jl_module_t[src]

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