Crate trillium_async_std[][src]

Expand description

Trillium server adapter for async-std

fn main() {
    trillium_async_std::run(|conn: trillium::Conn| async move {
        conn.ok("hello async-std")
    });
}
#[async_std::main]
async fn main() {
    trillium_async_std::run_async(|conn: trillium::Conn| async move {
        conn.ok("hello async-std")
    }).await;
}

Structs

ClientConfig

configuration for the tcp Connector

Stopper

This struct provides a synchronized mechanism for canceling Futures and Streams.

TcpConnector

trillium client tcp connector for async-std

Functions

config

Configures a server before running it

run

Runs a trillium handler in a sync context with default config

run_async

Runs a trillium handler in an async context with default config