pub trait RequestExtensions {
    fn get_current_uat(&self) -> Option<String>;
    fn get_current_auth_session_id(&self) -> Option<Uuid>;
    fn get_url_param(&self, param: &str) -> Result<String, Error>;
    fn new_eventid(&self) -> (Uuid, String);
}

Required Methods

Implementations on Foreign Types

Implementors