#[repr(C)]pub struct Tcl_HashKeyType {
pub version: c_int,
pub flags: c_int,
pub hashKeyProc: Tcl_HashKeyProc,
pub compareKeysProc: Tcl_CompareHashKeysProc,
pub allocEntryProc: Tcl_AllocHashEntryProc,
pub freeEntryProc: Tcl_FreeHashEntryProc,
}
Fields§
§version: c_int
§flags: c_int
§hashKeyProc: Tcl_HashKeyProc
§compareKeysProc: Tcl_CompareHashKeysProc
§allocEntryProc: Tcl_AllocHashEntryProc
§freeEntryProc: Tcl_FreeHashEntryProc
Trait Implementations§
Source§impl Clone for Tcl_HashKeyType
impl Clone for Tcl_HashKeyType
Source§fn clone(&self) -> Tcl_HashKeyType
fn clone(&self) -> Tcl_HashKeyType
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 moreSource§impl Debug for Tcl_HashKeyType
impl Debug for Tcl_HashKeyType
impl Copy for Tcl_HashKeyType
Auto Trait Implementations§
impl Freeze for Tcl_HashKeyType
impl RefUnwindSafe for Tcl_HashKeyType
impl Send for Tcl_HashKeyType
impl Sync for Tcl_HashKeyType
impl Unpin for Tcl_HashKeyType
impl UnwindSafe for Tcl_HashKeyType
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