pub trait Connected<T>: Clone + Send + Sync + 'static {
    fn connect_info(target: T) -> Self;
}
Available on crate feature tokio only.
Expand description

Trait that connected IO resources implement and use to produce information about the connection.

The goal for this trait is to allow users to implement custom IO types that can still provide the same connection metadata.

See Router::into_make_service_with_connect_info for more details.

Required Methods§

Create type holding information about the connection.

Implementations on Foreign Types§

Implementors§