#[repr(C)]pub struct pm_node_hash_t {
pub nodes: *mut *mut pm_node_t,
pub size: u32,
pub capacity: u32,
}
Expand description
An internal hash table for a set of nodes.
Fields§
§nodes: *mut *mut pm_node_t
The array of nodes in the hash table.
size: u32
The size of the hash table.
capacity: u32
The space that has been allocated in the hash table.
Trait Implementations§
Source§impl Clone for pm_node_hash_t
impl Clone for pm_node_hash_t
Source§fn clone(&self) -> pm_node_hash_t
fn clone(&self) -> pm_node_hash_t
Returns a copy 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 pm_node_hash_t
impl Debug for pm_node_hash_t
Source§impl Default for pm_node_hash_t
impl Default for pm_node_hash_t
impl Copy for pm_node_hash_t
Auto Trait Implementations§
impl Freeze for pm_node_hash_t
impl RefUnwindSafe for pm_node_hash_t
impl !Send for pm_node_hash_t
impl !Sync for pm_node_hash_t
impl Unpin for pm_node_hash_t
impl UnwindSafe for pm_node_hash_t
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