[][src]Struct tokio_snappy::SnappyIO

pub struct SnappyIO<T> { /* fields omitted */ }

Async implementation for the snappy framed encoder/decoder.

Implementations

impl<T> SnappyIO<T>[src]

pub fn new(io: T) -> Self[src]

Create a new SnappyIO, wrapped the given io object.

pub fn into_inner(self) -> T[src]

Consume this SnappyIO, returning the underlying value.

Trait Implementations

impl<T: AsyncRead + Unpin> AsyncRead for SnappyIO<T>[src]

impl<T: AsyncWrite + Unpin> AsyncWrite for SnappyIO<T>[src]

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

impl<'pin, T> Unpin for SnappyIO<T> where
    __SnappyIO<'pin, T>: Unpin
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for SnappyIO<T> where
    T: RefUnwindSafe

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

impl<T> Sync for SnappyIO<T> where
    T: Sync

impl<T> UnwindSafe for SnappyIO<T> where
    T: UnwindSafe

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.