pub struct ExecutedHttpRequest {
pub method: String,
pub url: String,
pub status_code: u16,
pub on_operation_response_outputs: Vec<Vec<u8>>,
}
Expand description
Info about an executed HTTP request.
Fields§
§method: String
The request method.
url: String
The request URL.
status_code: u16
The response status code.
on_operation_response_outputs: Vec<Vec<u8>>
The outputs of executed on-operation-response hooks for every operation of the request.
Trait Implementations§
Source§impl Clone for ExecutedHttpRequest
impl Clone for ExecutedHttpRequest
Source§fn clone(&self) -> ExecutedHttpRequest
fn clone(&self) -> ExecutedHttpRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ExecutedHttpRequest
impl RefUnwindSafe for ExecutedHttpRequest
impl Send for ExecutedHttpRequest
impl Sync for ExecutedHttpRequest
impl Unpin for ExecutedHttpRequest
impl UnwindSafe for ExecutedHttpRequest
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