#[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 _bitfield_1: u8,
pub __bindgen_padding_0: [u8; 7],
}Fields§
§name: *mut jl_sym_t§value: *mut jl_value_t§globalref: *mut jl_value_t§owner: *mut _jl_module_t§_bitfield_1: u8§__bindgen_padding_0: [u8; 7]Implementations§
Source§impl jl_binding_t
impl jl_binding_t
pub fn constp(&self) -> c_uint
pub fn set_constp(&mut self, val: c_uint)
pub fn exportp(&self) -> c_uint
pub fn set_exportp(&mut self, val: c_uint)
pub fn imported(&self) -> c_uint
pub fn set_imported(&mut self, val: c_uint)
pub fn deprecated(&self) -> c_uint
pub fn set_deprecated(&mut self, val: c_uint)
pub fn new_bitfield_1( constp: c_uint, exportp: c_uint, imported: c_uint, deprecated: c_uint, ) -> u8
Trait Implementations§
Source§impl Clone for jl_binding_t
impl Clone for jl_binding_t
Source§fn clone(&self) -> jl_binding_t
fn clone(&self) -> jl_binding_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for jl_binding_t
impl Debug for jl_binding_t
impl Copy for jl_binding_t
Auto Trait Implementations§
impl Freeze for jl_binding_t
impl RefUnwindSafe for jl_binding_t
impl !Send for jl_binding_t
impl !Sync for jl_binding_t
impl Unpin for jl_binding_t
impl UnwindSafe for jl_binding_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more