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

Required Methods§

Implementations on Foreign Types§

source§

impl RequestExtensions for Request<AppState>

Implementors§