[][src]Struct queen::wire::Wire

pub struct Wire<T: Send> { /* fields omitted */ }

Implementations

impl<T: Send> Wire<T>[src]

pub fn pipe(capacity: usize, attr: Message) -> Result<(Wire<T>, Wire<T>)>[src]

pub fn capacity(&self) -> usize[src]

pub fn attr(&self) -> LockGuard<Message>[src]

pub fn close(&self)[src]

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

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

pub fn pending(&self) -> usize[src]

pub fn send(&self, data: T) -> Result<(), SendError<T>>[src]

pub fn send_num(&self) -> usize[src]

pub fn recv(&self) -> Result<T, RecvError>[src]

pub fn recv_num(&self) -> usize[src]

pub fn wait(&self, timeout: Option<Duration>) -> Result<T, RecvError>[src]

Trait Implementations

impl<T: Send> Debug for Wire<T>[src]

impl<T: Send> Drop for Wire<T>[src]

impl<T: Send> Send for Wire<T>[src]

impl<T: Send> Source for Wire<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Wire<T>

impl<T> !Sync for Wire<T>

impl<T> Unpin for Wire<T>

impl<T> !UnwindSafe for Wire<T>

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, 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>,