pub struct ContinueResponseReturnObject(pub Option<Value>);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.
Tuple Fields§
§0: Option<Value>Trait Implementations§
Source§impl Clone for ContinueResponseReturnObject
impl Clone for ContinueResponseReturnObject
Source§fn clone(&self) -> ContinueResponseReturnObject
fn clone(&self) -> ContinueResponseReturnObject
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 ContinueResponseReturnObject
impl Debug for ContinueResponseReturnObject
Source§impl<'de> Deserialize<'de> for ContinueResponseReturnObject
impl<'de> Deserialize<'de> for ContinueResponseReturnObject
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 PartialEq for ContinueResponseReturnObject
impl PartialEq for ContinueResponseReturnObject
Source§fn eq(&self, other: &ContinueResponseReturnObject) -> bool
fn eq(&self, other: &ContinueResponseReturnObject) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ContinueResponseReturnObject
Auto Trait Implementations§
impl Freeze for ContinueResponseReturnObject
impl RefUnwindSafe for ContinueResponseReturnObject
impl Send for ContinueResponseReturnObject
impl Sync for ContinueResponseReturnObject
impl Unpin for ContinueResponseReturnObject
impl UnsafeUnpin for ContinueResponseReturnObject
impl UnwindSafe for ContinueResponseReturnObject
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