[][src]Struct libuv::handles::streams::stream::StreamHandle

pub struct StreamHandle { /* fields omitted */ }

Stream handles provide an abstraction of a duplex communication channel. StreamHandle is an abstract type, libuv provides 3 stream implementations in the form of TcpHandle, PipeHandle and TtyHandle.

Trait Implementations

impl Clone for StreamHandle[src]

impl Copy for StreamHandle[src]

impl From<PipeHandle> for StreamHandle[src]

impl From<StreamHandle> for Handle[src]

impl From<TcpHandle> for StreamHandle[src]

impl From<TtyHandle> for StreamHandle[src]

impl From<UdpHandle> for StreamHandle[src]

impl HandleTrait for StreamHandle[src]

impl StreamTrait for StreamHandle[src]

impl ToHandle for StreamHandle[src]

impl ToStream for StreamHandle[src]

impl TryFrom<StreamHandle> for PipeHandle[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<StreamHandle> for TcpHandle[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<StreamHandle> for TtyHandle[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<StreamHandle> for UdpHandle[src]

type Error = ConversionError

The type returned in the event of a conversion error.

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