pub struct ContinueInterceptedRequest {
pub interception_id: InterceptionId,
pub error_reason: Option<ErrorReason>,
pub raw_response: Option<Vec<u8>>,
pub url: Option<String>,
pub method: Option<String>,
pub post_data: Option<String>,
pub headers: Option<Headers>,
pub auth_challenge_response: Option<AuthChallengeResponse>,
}Fields§
§interception_id: InterceptionId§error_reason: Option<ErrorReason>§raw_response: Option<Vec<u8>>§url: Option<String>§method: Option<String>§post_data: Option<String>§headers: Option<Headers>§auth_challenge_response: Option<AuthChallengeResponse>Trait Implementations§
Source§impl Clone for ContinueInterceptedRequest
impl Clone for ContinueInterceptedRequest
Source§fn clone(&self) -> ContinueInterceptedRequest
fn clone(&self) -> ContinueInterceptedRequest
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 ContinueInterceptedRequest
impl Debug for ContinueInterceptedRequest
Source§impl<'de> Deserialize<'de> for ContinueInterceptedRequest
impl<'de> Deserialize<'de> for ContinueInterceptedRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Method for ContinueInterceptedRequest
impl Method for ContinueInterceptedRequest
const NAME: &'static str = "Network.continueInterceptedRequest"
type ReturnObject = ContinueInterceptedRequestReturnObject
fn to_method_call(self, call_id: CallId) -> MethodCall<Self>where
Self: Sized,
impl StructuralPartialEq for ContinueInterceptedRequest
Auto Trait Implementations§
impl Freeze for ContinueInterceptedRequest
impl RefUnwindSafe for ContinueInterceptedRequest
impl Send for ContinueInterceptedRequest
impl Sync for ContinueInterceptedRequest
impl Unpin for ContinueInterceptedRequest
impl UnwindSafe for ContinueInterceptedRequest
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