#[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_bucketnum_buckets: c_uintlog2_num_buckets: c_uintnum_items: c_uinttail: *mut UT_hash_handlehho: isizeideal_chain_maxlen: c_uintnonideal_items: c_uintineff_expands: c_uintnoexpand: c_uintsignature: u32

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.