#[repr(C)]pub struct aws_linked_hash_table_node {
pub node: aws_linked_list_node,
pub table: *mut aws_linked_hash_table,
pub key: *const c_void,
pub value: *mut c_void,
}
Expand description
Linked-List node stored in the table. This is the node type that will be returned in aws_linked_hash_table_get_iteration_list().
Fields
node: aws_linked_list_node
table: *mut aws_linked_hash_table
key: *const c_void
value: *mut c_void
Trait Implementations
sourceimpl Clone for aws_linked_hash_table_node
impl Clone for aws_linked_hash_table_node
sourcefn clone(&self) -> aws_linked_hash_table_node
fn clone(&self) -> aws_linked_hash_table_node
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 aws_linked_hash_table_node
impl Debug for aws_linked_hash_table_node
sourceimpl Default for aws_linked_hash_table_node
impl Default for aws_linked_hash_table_node
sourceimpl PartialEq<aws_linked_hash_table_node> for aws_linked_hash_table_node
impl PartialEq<aws_linked_hash_table_node> for aws_linked_hash_table_node
sourcefn eq(&self, other: &aws_linked_hash_table_node) -> bool
fn eq(&self, other: &aws_linked_hash_table_node) -> bool
impl Copy for aws_linked_hash_table_node
impl Eq for aws_linked_hash_table_node
impl StructuralEq for aws_linked_hash_table_node
impl StructuralPartialEq for aws_linked_hash_table_node
Auto Trait Implementations
impl RefUnwindSafe for aws_linked_hash_table_node
impl !Send for aws_linked_hash_table_node
impl !Sync for aws_linked_hash_table_node
impl Unpin for aws_linked_hash_table_node
impl UnwindSafe for aws_linked_hash_table_node
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