#[repr(C)]pub struct BSTCaseInsensitiveStringMapVtbl<T> {
pub CxxDrop: fn(this: &mut BSTCaseInsensitiveStringMap<T>),
pub HashFunction: fn(this: &BSTCaseInsensitiveStringMap<T>, key: &str) -> u32,
pub KeyEq: fn(this: &BSTCaseInsensitiveStringMap<T>, lhs: &str, rhs: &str) -> bool,
}
Expand description
The virtual function table for BSTCaseInsensitiveStringMap<T>
.
This struct defines function pointers to simulate the C++ virtual functions.
Fields§
§CxxDrop: fn(this: &mut BSTCaseInsensitiveStringMap<T>)
Destructor function pointer.
HashFunction: fn(this: &BSTCaseInsensitiveStringMap<T>, key: &str) -> u32
Function pointer for hashing the key.
KeyEq: fn(this: &BSTCaseInsensitiveStringMap<T>, lhs: &str, rhs: &str) -> bool
Function pointer for case-insensitive key equality.
Auto Trait Implementations§
impl<T> Freeze for BSTCaseInsensitiveStringMapVtbl<T>
impl<T> RefUnwindSafe for BSTCaseInsensitiveStringMapVtbl<T>
impl<T> Send for BSTCaseInsensitiveStringMapVtbl<T>
impl<T> Sync for BSTCaseInsensitiveStringMapVtbl<T>
impl<T> Unpin for BSTCaseInsensitiveStringMapVtbl<T>
impl<T> UnwindSafe for BSTCaseInsensitiveStringMapVtbl<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