Struct samotop::io::client::TcpConnector[][src]

pub struct TcpConnector<TLS> {
    pub tls_mode: TlsMode,
    pub provider: TLS,
}

Fields

tls_mode: TlsModeprovider: TLS

Trait Implementations

impl<TLS> Connector for TcpConnector<TLS> where
    TLS: TlsProvider + Sync + Send + 'static, 
[src]

type Stream = TlsCapable

pub fn connect<'s, 'c, 'a, C>(
    &'s self,
    configuration: &'c C
) -> Pin<Box<dyn Future<Output = Result<<TcpConnector<TLS> as Connector>::Stream, Error>> + 'a + Send + Sync, Global>>

Notable traits for Pin<P>

impl<P> Future for Pin<P> where
    P: Unpin + DerefMut,
    <P as Deref>::Target: Future
type Output = <<P as Deref>::Target as Future>::Output;
where
    's: 'a,
    'c: 'a,
    C: ConnectionConfiguration + Sync
[src]

This provider of connectivity takes care of resolving given address (which could be an IP, FQDN, URL...), establishing a connection and enabling (or not) TLS upgrade.

impl<TLS> Debug for TcpConnector<TLS> where
    TLS: Debug
[src]

impl<TLS> Default for TcpConnector<TLS> where
    TLS: Default
[src]

Auto Trait Implementations

impl<TLS> RefUnwindSafe for TcpConnector<TLS> where
    TLS: RefUnwindSafe
[src]

impl<TLS> Send for TcpConnector<TLS> where
    TLS: Send
[src]

impl<TLS> Sync for TcpConnector<TLS> where
    TLS: Sync
[src]

impl<TLS> Unpin for TcpConnector<TLS> where
    TLS: Unpin
[src]

impl<TLS> UnwindSafe for TcpConnector<TLS> where
    TLS: UnwindSafe
[src]

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

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<V, T> VZip<V> for T where
    V: MultiLane<T>,