Struct rbspy_ruby_structs::ruby_2_7_2::st_table[][src]

#[repr(C)]pub struct st_table {
    pub entry_power: c_uchar,
    pub bin_power: c_uchar,
    pub size_ind: c_uchar,
    pub rebuilds_num: c_uint,
    pub type_: *const st_hash_type,
    pub num_entries: st_index_t,
    pub bins: *mut st_index_t,
    pub entries_start: st_index_t,
    pub entries_bound: st_index_t,
    pub entries: *mut st_table_entry,
}

Fields

entry_power: c_ucharbin_power: c_ucharsize_ind: c_ucharrebuilds_num: c_uinttype_: *const st_hash_typenum_entries: st_index_tbins: *mut st_index_tentries_start: st_index_tentries_bound: st_index_tentries: *mut st_table_entry

Trait Implementations

impl Clone for st_table[src]

impl Copy for st_table[src]

impl Debug for st_table[src]

Auto Trait Implementations

impl RefUnwindSafe for st_table

impl !Send for st_table

impl !Sync for st_table

impl Unpin for st_table

impl UnwindSafe for st_table

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.