Struct fp_rust::sync::BlockingQueue[][src]

pub struct BlockingQueue<T> {
    pub timeout: Option<Duration>,
    pub panic: bool,
    // some fields omitted
}

Fields

Methods

impl<T> BlockingQueue<T>
[src]

Trait Implementations

impl<T: Debug> Debug for BlockingQueue<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Clone> Clone for BlockingQueue<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: 'static + Send> Queue<T> for BlockingQueue<T>
[src]

Auto Trait Implementations

impl<T> Send for BlockingQueue<T> where
    T: Send

impl<T> Sync for BlockingQueue<T> where
    T: Send