#[repr(C)]pub struct Tcl_HashEntry {
pub nextPtr: *mut Tcl_HashEntry,
pub tablePtr: *mut Tcl_HashTable,
pub hash: *mut c_void,
pub clientData: ClientData,
pub key: Tcl_HashEntry__bindgen_ty_1,
}
Fields§
§nextPtr: *mut Tcl_HashEntry
§tablePtr: *mut Tcl_HashTable
§hash: *mut c_void
§clientData: ClientData
§key: Tcl_HashEntry__bindgen_ty_1
Trait Implementations§
Source§impl Clone for Tcl_HashEntry
impl Clone for Tcl_HashEntry
Source§fn clone(&self) -> Tcl_HashEntry
fn clone(&self) -> Tcl_HashEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for Tcl_HashEntry
Auto Trait Implementations§
impl Freeze for Tcl_HashEntry
impl RefUnwindSafe for Tcl_HashEntry
impl !Send for Tcl_HashEntry
impl !Sync for Tcl_HashEntry
impl Unpin for Tcl_HashEntry
impl UnwindSafe for Tcl_HashEntry
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