[][src]Struct may_waiter::WaiterMap

pub struct WaiterMap<K, T> { /* fields omitted */ }

Methods

impl<K: Hash + Eq, T> WaiterMap<K, T>[src]

pub fn new() -> Self[src]

pub fn new_waiter(&self, id: K) -> WaiterGuard<K, T> where
    K: Clone
[src]

return a waiter on the stack!

pub fn set_rsp(&self, id: &K, rsp: T) -> Result<(), T> where
    K: Debug
[src]

set rsp for the corresponding waiter

pub fn cancel_all(&self)[src]

cancel all the waiting waiter, all wait would return NotFound error

Trait Implementations

impl<K, T> Send for WaiterMap<K, T>[src]

impl<K, T> Sync for WaiterMap<K, T>[src]

impl<K: Hash + Eq, T> Default for WaiterMap<K, T>[src]

impl<K: Hash + Eq, T> Debug for WaiterMap<K, T>[src]

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]