trillium-api 0.3.0

an api handler for trillium.rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use trillium::{Conn, Handler};

/// a struct that halts the Conn handler sequence. see [`Conn::halt`]
/// for more.
#[derive(Clone, Copy, Debug)]
pub struct Halt;

impl Handler for Halt {
    async fn run(&self, conn: Conn) -> Conn {
        conn.halt()
    }
}