Struct oxide_auth::frontends::simple::request::Request [−][src]
pub struct Request {
pub query: HashMap<String, String>,
pub urlbody: HashMap<String, String>,
pub auth: Option<String>,
}Expand description
Open and simple implementation of WebRequest.
Fields
query: HashMap<String, String>The key-value pairs in the url query component.
urlbody: HashMap<String, String>The key-value pairs of a x-www-form-urlencoded body.
auth: Option<String>Provided authorization header.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Request
impl UnwindSafe for Request
Blanket Implementations
Mutably borrows from an owned value. Read more