pub trait RequestExt: Request {
    // Required method
    fn prefix(self, string: &str) -> PathPrefix<Self, String>;
}

Required Methods§

source

fn prefix(self, string: &str) -> PathPrefix<Self, String>

Object Safety§

This trait is not object safe.

Implementors§