enum HashTableType<'a> {
Local(RefCell<HashTableInner<'a>>),
Global(Mutex<HashTableInner<'a>>),
}
Variants§
Local(RefCell<HashTableInner<'a>>)
Global(Mutex<HashTableInner<'a>>)
Auto Trait Implementations§
impl<'a> !Freeze for HashTableType<'a>
impl<'a> !RefUnwindSafe for HashTableType<'a>
impl<'a> Send for HashTableType<'a>
impl<'a> !Sync for HashTableType<'a>
impl<'a> Unpin for HashTableType<'a>
impl<'a> !UnwindSafe for HashTableType<'a>
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