Struct shadowsocks_service::net::mon_stream::MonProxyStream[][src]

pub struct MonProxyStream<S> { /* fields omitted */ }

Monitored ProxyStream

Implementations

impl<S> MonProxyStream<S>[src]

pub fn from_stream(stream: S, flow_stat: Arc<FlowStat>) -> MonProxyStream<S>[src]

pub fn get_ref(&self) -> &S[src]

Trait Implementations

impl<S> AsyncRead for MonProxyStream<S> where
    S: AsyncRead + Unpin
[src]

impl<S> AsyncWrite for MonProxyStream<S> where
    S: AsyncWrite + Unpin
[src]

impl<'pin, S> Unpin for MonProxyStream<S> where
    __MonProxyStream<'pin, S>: Unpin
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for MonProxyStream<S> where
    S: RefUnwindSafe

impl<S> Send for MonProxyStream<S> where
    S: Send

impl<S> Sync for MonProxyStream<S> where
    S: Sync

impl<S> UnwindSafe for MonProxyStream<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?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<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,