zeke 0.1.6

a http library for rust built on top of tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

use crate::http::request::Contextable;

pub enum AppContext {
    Trace,
}

impl Contextable for AppContext {
    fn key(&self) -> &'static str {
        match self {
            AppContext::Trace => {"TRACE"},
        }
    }
}