pub struct ContinueRequestCommand { /* private fields */ }Available on crate features
Fetch and Network and IO and Page only.Expand description
Continues the request, optionally modifying some of its parameters.
Implementations§
Source§impl ContinueRequestCommand
impl ContinueRequestCommand
pub fn builder() -> ContinueRequestCommandBuilder
Sourcepub fn request_id(&self) -> &RequestId
pub fn request_id(&self) -> &RequestId
An id the client received in requestPaused event.
Sourcepub fn url(&self) -> Option<&String>
pub fn url(&self) -> Option<&String>
If set, the request url will be modified in a way that’s not observable by page.
Sourcepub fn headers(&self) -> Option<&Vec<HeaderEntry>>
pub fn headers(&self) -> Option<&Vec<HeaderEntry>>
If set, overrides the request headers.
Trait Implementations§
Source§impl Clone for ContinueRequestCommand
impl Clone for ContinueRequestCommand
Source§fn clone(&self) -> ContinueRequestCommand
fn clone(&self) -> ContinueRequestCommand
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 Command for ContinueRequestCommand
impl Command for ContinueRequestCommand
Source§impl Debug for ContinueRequestCommand
impl Debug for ContinueRequestCommand
Source§impl<'de> Deserialize<'de> for ContinueRequestCommand
impl<'de> Deserialize<'de> for ContinueRequestCommand
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
Auto Trait Implementations§
impl Freeze for ContinueRequestCommand
impl RefUnwindSafe for ContinueRequestCommand
impl Send for ContinueRequestCommand
impl Sync for ContinueRequestCommand
impl Unpin for ContinueRequestCommand
impl UnwindSafe for ContinueRequestCommand
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