#[repr(C)]pub struct bucketST {
pub size: c_long,
pub curr: c_long,
pub maxind: c_long,
pub minind: c_long,
pub bucket: *mut *mut nodeT,
pub bucketbase: *mut *mut nodeT,
pub wrapped: c_schar,
}Expand description
bucket data structure
Fields§
§size: c_long§curr: c_longnumber of buckets in list
maxind: c_longcurrent bucket index
minind: c_longmaximum bucket index
bucket: *mut *mut nodeTsmallest (possibly negative) bucket index
bucketbase: *mut *mut nodeTarray of first nodes in each bucket
wrapped: c_scharreal base of bucket array
Trait Implementations§
Auto Trait Implementations§
impl Freeze for bucketST
impl RefUnwindSafe for bucketST
impl !Send for bucketST
impl !Sync for bucketST
impl Unpin for bucketST
impl UnwindSafe for bucketST
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