Struct pretty_trace::CHashMap[][src]

pub struct CHashMap<K, V> { /* fields omitted */ }

Super simplifed concurrent HashMap for use with pretty_trace. The only public method is insert, allowing the user to set the current thread message.

Implementations

impl<K, V> CHashMap<K, V> where
    K: Hash + Eq
[src]

pub fn new() -> CHashMap<K, V>[src]

pub fn insert(&self, k: K, v: V)[src]

Auto Trait Implementations

impl<K, V> RefUnwindSafe for CHashMap<K, V>

impl<K, V> Send for CHashMap<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for CHashMap<K, V> where
    K: Send + Sync,
    V: Send + Sync

impl<K, V> Unpin for CHashMap<K, V> where
    K: Unpin,
    V: Unpin

impl<K, V> UnwindSafe for CHashMap<K, V>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,