Struct timely::communication::allocator::zero_copy::bytes_exchange::MergeQueue[][src]

pub struct MergeQueue { /* fields omitted */ }

An unbounded queue of bytes intended for point-to-point communication between threads. Cloning returns another handle to the same queue.

TODO: explain “extend”

Implementations

impl MergeQueue[src]

pub fn new(buzzer: Buzzer) -> MergeQueue[src]

Allocates a new queue with an associated signal.

pub fn is_complete(&self) -> bool[src]

Indicates that all input handles to the queue have dropped.

Trait Implementations

impl BytesPull for MergeQueue[src]

impl BytesPush for MergeQueue[src]

impl Clone for MergeQueue[src]

impl Drop for MergeQueue[src]

Auto Trait Implementations

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> Data for T where
    T: 'static + Clone
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.