pub struct ContinueInterceptedRequestCommandBuilder { /* private fields */ }Network and Debugger and Runtime and Security and experimental only.Implementationsยง
Sourceยงimpl ContinueInterceptedRequestCommandBuilder
impl ContinueInterceptedRequestCommandBuilder
pub fn interception_id(&mut self, v: InterceptionId) -> &mut Self
Sourcepub fn error_reason(&mut self, v: ErrorReason) -> &mut Self
๐Deprecated
pub fn error_reason(&mut self, v: ErrorReason) -> &mut Self
If set this causes the request to fail with the given reason. Passing Aborted for requests
marked with isNavigationRequest also cancels the navigation. Must not be set in response
to an authChallenge.
Sourcepub fn raw_response(&mut self, v: String) -> &mut Self
๐Deprecated
pub fn raw_response(&mut self, v: String) -> &mut Self
If set the requests completes using with the provided base64 encoded raw response, including HTTP status line and headers etcโฆ Must not be set in response to an authChallenge.
Sourcepub fn url(&mut self, v: String) -> &mut Self
๐Deprecated
pub fn url(&mut self, v: String) -> &mut Self
If set the request url will be modified in a way thatโs not observable by page. Must not be set in response to an authChallenge.
Sourcepub fn method(&mut self, v: String) -> &mut Self
๐Deprecated
pub fn method(&mut self, v: String) -> &mut Self
If set this allows the request method to be overridden. Must not be set in response to an authChallenge.
Sourcepub fn post_data(&mut self, v: String) -> &mut Self
๐Deprecated
pub fn post_data(&mut self, v: String) -> &mut Self
If set this allows postData to be set. Must not be set in response to an authChallenge.
Sourcepub fn headers(&mut self, v: Headers) -> &mut Self
๐Deprecated
pub fn headers(&mut self, v: Headers) -> &mut Self
If set this allows the request headers to be changed. Must not be set in response to an authChallenge.
Sourcepub fn auth_challenge_response(&mut self, v: JsonValue) -> &mut Self
๐Deprecated
pub fn auth_challenge_response(&mut self, v: JsonValue) -> &mut Self
Response to a requestIntercepted with an authChallenge. Must not be set otherwise.
pub fn build( &mut self, ) -> Result<ContinueInterceptedRequestCommand, &'static str>
Trait Implementationsยง
Sourceยงimpl Clone for ContinueInterceptedRequestCommandBuilder
impl Clone for ContinueInterceptedRequestCommandBuilder
Sourceยงfn clone(&self) -> ContinueInterceptedRequestCommandBuilder
fn clone(&self) -> ContinueInterceptedRequestCommandBuilder
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more