Struct chromiumoxide::cdp::browser_protocol::fetch::ContinueRequestParams[][src]

pub struct ContinueRequestParams {
    pub request_id: RequestId,
    pub url: Option<String>,
    pub method: Option<String>,
    pub post_data: Option<Binary>,
    pub headers: Option<Vec<HeaderEntry, Global>>,
}

Continues the request, optionally modifying some of its parameters. continueRequest

Fields

request_id: RequestId

An id the client received in requestPaused event.

url: Option<String>

If set, the request url will be modified in a way that’s not observable by page.

method: Option<String>

If set, the request method is overridden.

post_data: Option<Binary>

If set, overrides the post data in the request.

headers: Option<Vec<HeaderEntry, Global>>

If set, overrides the request headers.

Implementations

impl ContinueRequestParams[src]

pub fn new(request_id: impl Into<RequestId>) -> ContinueRequestParams[src]

impl ContinueRequestParams[src]

impl ContinueRequestParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for ContinueRequestParams[src]

impl Command for ContinueRequestParams[src]

type Response = ContinueRequestReturns

The type of the response this request triggers on the chromium server

impl Debug for ContinueRequestParams[src]

impl<'de> Deserialize<'de> for ContinueRequestParams[src]

impl Method for ContinueRequestParams[src]

impl MethodType for ContinueRequestParams[src]

impl PartialEq<ContinueRequestParams> for ContinueRequestParams[src]

impl Serialize for ContinueRequestParams[src]

impl StructuralPartialEq for ContinueRequestParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,