Trait tinyhttp_internal::config::Route
source · pub trait Route: DynClone + Sync + Send + Debug + ToResponse {
// Required methods
fn get_path(&self) -> &str;
fn get_method(&self) -> Method;
fn wildcard(&self) -> Option<String>;
fn clone_dyn(&self) -> Box<dyn Route>;
}