Struct tinydtls_sys::UT_hash_table
source · #[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: u32Trait Implementations
sourceimpl Clone for UT_hash_table
impl Clone for UT_hash_table
sourcefn clone(&self) -> UT_hash_table
fn clone(&self) -> UT_hash_table
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for UT_hash_table
impl Debug for UT_hash_table
impl Copy for UT_hash_table
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more