#[repr(C)]pub struct UT_hash_table {
pub buckets: *mut UT_hash_bucket,
pub num_buckets: c_uint,
pub log2_num_buckets: c_uint,
pub num_items: c_uint,
pub tail: *mut UT_hash_handle,
pub hho: isize,
pub ideal_chain_maxlen: c_uint,
pub nonideal_items: c_uint,
pub ineff_expands: c_uint,
pub noexpand: c_uint,
pub signature: u32,
}Fields§
§buckets: *mut UT_hash_bucket§num_buckets: c_uint§log2_num_buckets: c_uint§num_items: c_uint§tail: *mut UT_hash_handle§hho: isize§ideal_chain_maxlen: c_uint§nonideal_items: c_uint§ineff_expands: c_uint§noexpand: c_uint§signature: u32Trait Implementations§
Source§impl Clone for UT_hash_table
impl Clone for UT_hash_table
Source§fn clone(&self) -> UT_hash_table
fn clone(&self) -> UT_hash_table
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 UT_hash_table
impl Debug for UT_hash_table
impl Copy for UT_hash_table
Auto Trait Implementations§
impl Freeze for UT_hash_table
impl RefUnwindSafe for UT_hash_table
impl !Send for UT_hash_table
impl !Sync for UT_hash_table
impl Unpin for UT_hash_table
impl UnwindSafe for UT_hash_table
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