Trait tiberius::ToIo [] [src]

pub trait ToIo<I: BoxableIo + Sized> {
    type Result: Future<Item = I, Error = TdsError> + Send + Sized + 'static;
    fn to_io(self, handle: &Handle) -> Self::Result
    where
        Self: Sized
; }

Something that can be converted to an underlying IO

Associated Types

Required Methods

Implementations on Foreign Types

impl<'a> ToIo<TcpStream> for &'a SocketAddr
[src]

[src]

Implementors