pub struct ContinueResponseParams {
pub request_id: RequestId,
pub response_code: Option<i32>,
pub response_phrase: Option<String>,
pub response_headers: Option<Vec<HeaderEntry>>,
pub binary_response_headers: Option<String>,
}Expand description
Parameters for Fetch.continueResponse (experimental).
Fields§
§request_id: RequestIdAn id the client received in requestPaused event.
response_code: Option<i32>An HTTP response code. If absent, original response code will be used.
response_phrase: Option<String>A textual representation of responseCode.
response_headers: Option<Vec<HeaderEntry>>Response headers. If absent, original response headers will be used.
binary_response_headers: Option<String>Alternative way of specifying response headers.
Trait Implementations§
Source§impl Clone for ContinueResponseParams
impl Clone for ContinueResponseParams
Source§fn clone(&self) -> ContinueResponseParams
fn clone(&self) -> ContinueResponseParams
Returns a duplicate 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 moreSource§impl Debug for ContinueResponseParams
impl Debug for ContinueResponseParams
Source§impl Default for ContinueResponseParams
impl Default for ContinueResponseParams
Source§fn default() -> ContinueResponseParams
fn default() -> ContinueResponseParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContinueResponseParams
impl RefUnwindSafe for ContinueResponseParams
impl Send for ContinueResponseParams
impl Sync for ContinueResponseParams
impl Unpin for ContinueResponseParams
impl UnwindSafe for ContinueResponseParams
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