aboutsummaryrefslogtreecommitdiffstats
path: root/src/request.rs
AgeCommit message (Collapse)Author
2020-07-04Add license (GNU GPLv3+)Teddy Wing
2020-07-04request::Error: Remove context from error variantsTeddy Wing
Since we don't need to add any additional context or messages here, we can turn off error context for these variants and shorten error propagation.
2020-07-04Add documentationTeddy Wing
Write doc comments for functions and types, and include a short example.
2020-06-29Rename `request::RequestError` to `request::Error`Teddy Wing
Now that we have a `request` module, the "Request" part of the name is redundant.
2020-06-29FastCgiRequest: Make `scheme()` method privateTeddy Wing
Turns out I didn't need to make it public as we only need to use it within the module.
2020-06-29Move request code to `request.rs`Teddy Wing
Want to separate request and server code.