Struct ethcore::client::ExecutionQueue
source · [−]pub struct ExecutionQueue<ITEM> where
ITEM: 'static + Send, { /* private fields */ }
Expand description
Creates thread and uses AsyncQueue to queue and execute items that are received in queue function. Queue is restricted by max_items and will return false if we want enqueue items on full queue.
Implementations
sourceimpl<ITEM> ExecutionQueue<ITEM> where
ITEM: 'static + Send,
impl<ITEM> ExecutionQueue<ITEM> where
ITEM: 'static + Send,
Auto Trait Implementations
impl<ITEM> !RefUnwindSafe for ExecutionQueue<ITEM>
impl<ITEM> Send for ExecutionQueue<ITEM>
impl<ITEM> Sync for ExecutionQueue<ITEM>
impl<ITEM> Unpin for ExecutionQueue<ITEM>
impl<ITEM> !UnwindSafe for ExecutionQueue<ITEM>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more