Trait tinyhttp_internal::config::Route
source · [−]pub trait Route: DynClone {
fn get_path(&self) -> &str;
fn get_method(&self) -> Method;
fn get_body(&self) -> fn(_: Request) -> Vec<u8>;
fn post_body(&self) -> fn(_: Request) -> Vec<u8>;
fn wildcard(&self) -> Option<String>;
}