pub struct Request {
pub method: String,
pub url: String,
pub headers: Vec<(String, String)>,
pub body: String,
}Expand description
A parsed HTTP request.
Fields§
§method: StringHTTP method (upper-cased; defaults to GET).
url: StringRequest URL.
headers: Vec<(String, String)>(name, value) header pairs, in order.
body: StringRequest body (may be empty).
Trait Implementations§
impl Eq for Request
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnsafeUnpin for Request
impl UnwindSafe for Request
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more