[][src]Struct jl_sys::jl_binding_t

#[repr(C)]pub struct jl_binding_t {
    pub name: *mut jl_sym_t,
    pub value: *mut jl_value_t,
    pub globalref: *mut jl_value_t,
    pub owner: *mut _jl_module_t,
    pub constp: u8,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
    pub __bindgen_padding_0: [u16; 3],
}

Fields

name: *mut jl_sym_tvalue: *mut jl_value_tglobalref: *mut jl_value_towner: *mut _jl_module_tconstp: u8_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>__bindgen_padding_0: [u16; 3]

Implementations

impl jl_binding_t[src]

pub fn exportp(&self) -> u8[src]

pub fn set_exportp(&mut self, val: u8)[src]

pub fn imported(&self) -> u8[src]

pub fn set_imported(&mut self, val: u8)[src]

pub fn deprecated(&self) -> u8[src]

pub fn set_deprecated(&mut self, val: u8)[src]

pub fn new_bitfield_1(
    exportp: u8,
    imported: u8,
    deprecated: u8
) -> __BindgenBitfieldUnit<[u8; 1], u8>
[src]

Trait Implementations

impl Clone for jl_binding_t[src]

impl Copy for jl_binding_t[src]

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