pub struct ContinueResponseParams<'a> { /* private fields */ }Expand description
Continues loading of the paused response, optionally modifying the response headers. If either responseCode or headers are modified, all of them must be present.
Implementations§
Source§impl<'a> ContinueResponseParams<'a>
impl<'a> ContinueResponseParams<'a>
pub fn builder(requestId: RequestId<'a>) -> ContinueResponseParamsBuilder<'a>
pub fn requestId(&self) -> &RequestId<'a>
pub fn responseCode(&self) -> Option<i64>
pub fn responsePhrase(&self) -> Option<&str>
pub fn responseHeaders(&self) -> Option<&[HeaderEntry<'a>]>
pub fn binaryResponseHeaders(&self) -> Option<&str>
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for ContinueResponseParams<'a>
impl<'a> CdpCommand<'a> for ContinueResponseParams<'a>
Source§impl<'a> Clone for ContinueResponseParams<'a>
impl<'a> Clone for ContinueResponseParams<'a>
Source§fn clone(&self) -> ContinueResponseParams<'a>
fn clone(&self) -> ContinueResponseParams<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ContinueResponseParams<'a>
impl<'a> Debug for ContinueResponseParams<'a>
Source§impl<'a> Default for ContinueResponseParams<'a>
impl<'a> Default for ContinueResponseParams<'a>
Source§fn default() -> ContinueResponseParams<'a>
fn default() -> ContinueResponseParams<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for ContinueResponseParams<'a>
impl<'de, 'a> Deserialize<'de> for ContinueResponseParams<'a>
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<'a> Freeze for ContinueResponseParams<'a>
impl<'a> RefUnwindSafe for ContinueResponseParams<'a>
impl<'a> Send for ContinueResponseParams<'a>
impl<'a> Sync for ContinueResponseParams<'a>
impl<'a> Unpin for ContinueResponseParams<'a>
impl<'a> UnsafeUnpin for ContinueResponseParams<'a>
impl<'a> UnwindSafe for ContinueResponseParams<'a>
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