#[repr(u32)]pub enum ruby_special_consts {
RUBY_Qfalse = 0,
RUBY_Qnil = 4,
RUBY_Qtrue = 20,
RUBY_Qundef = 36,
RUBY_IMMEDIATE_MASK = 7,
RUBY_FIXNUM_FLAG = 1,
RUBY_FLONUM_MASK = 3,
RUBY_FLONUM_FLAG = 2,
RUBY_SYMBOL_FLAG = 12,
RUBY_SPECIAL_SHIFT = 8,
}Expand description
Variants§
RUBY_Qfalse = 0
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_Qnil = 4
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_Qtrue = 20
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_Qundef = 36
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_IMMEDIATE_MASK = 7
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_FIXNUM_FLAG = 1
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_FLONUM_MASK = 3
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_FLONUM_FLAG = 2
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_SYMBOL_FLAG = 12
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.2.3
RUBY_SPECIAL_SHIFT = 8
Trait Implementations§
Source§impl Clone for ruby_special_consts
impl Clone for ruby_special_consts
Source§fn clone(&self) -> ruby_special_consts
fn clone(&self) -> ruby_special_consts
Returns a duplicate 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 ruby_special_consts
impl Debug for ruby_special_consts
Source§impl Hash for ruby_special_consts
impl Hash for ruby_special_consts
Source§impl Into<u64> for ruby_special_consts
impl Into<u64> for ruby_special_consts
Source§impl PartialEq for ruby_special_consts
impl PartialEq for ruby_special_consts
impl Copy for ruby_special_consts
impl Eq for ruby_special_consts
impl StructuralPartialEq for ruby_special_consts
Auto Trait Implementations§
impl Freeze for ruby_special_consts
impl RefUnwindSafe for ruby_special_consts
impl Send for ruby_special_consts
impl Sync for ruby_special_consts
impl Unpin for ruby_special_consts
impl UnwindSafe for ruby_special_consts
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