[−][src]Struct queen::wire::Wire
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 recv(&self) -> Result<T, RecvError>[src]
pub fn wait(&self, timeout: Option<Duration>) -> Result<T, RecvError>[src]
Trait Implementations
impl<T: Send> Drop for Wire<T>[src]
impl<T: Send> Evented for Wire<T>[src]
fn add(
&self,
epoll: &Epoll,
token: Token,
interest: Ready,
opts: EpollOpt
) -> Result<()>[src]
&self,
epoll: &Epoll,
token: Token,
interest: Ready,
opts: EpollOpt
) -> Result<()>
fn modify(
&self,
epoll: &Epoll,
token: Token,
interest: Ready,
opts: EpollOpt
) -> Result<()>[src]
&self,
epoll: &Epoll,
token: Token,
interest: Ready,
opts: EpollOpt
) -> Result<()>
fn delete(&self, epoll: &Epoll) -> Result<()>[src]
impl<T: Send> Send 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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,