pub struct ReplayXhrParams {
pub request_id: RequestId,
}Expand description
This method sends a new XMLHttpRequest which is identical to the original one. The following parameters should be identical: method, url, async, request body, extra headers, withCredentials attribute, user, password. replayXHR
Fields§
§request_id: RequestIdIdentifier of XHR to replay.
Implementations§
Source§impl ReplayXhrParams
impl ReplayXhrParams
pub fn builder() -> ReplayXhrParamsBuilder
Source§impl ReplayXhrParams
impl ReplayXhrParams
pub const IDENTIFIER: &'static str = "Network.replayXHR"
Trait Implementations§
Source§impl Clone for ReplayXhrParams
impl Clone for ReplayXhrParams
Source§fn clone(&self) -> ReplayXhrParams
fn clone(&self) -> ReplayXhrParams
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 ReplayXhrParams
impl Command for ReplayXhrParams
Source§impl Debug for ReplayXhrParams
impl Debug for ReplayXhrParams
Source§impl<'de> Deserialize<'de> for ReplayXhrParams
impl<'de> Deserialize<'de> for ReplayXhrParams
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 ReplayXhrParams
impl Method for ReplayXhrParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for ReplayXhrParams
impl MethodType for ReplayXhrParams
Source§impl PartialEq for ReplayXhrParams
impl PartialEq for ReplayXhrParams
Source§impl Serialize for ReplayXhrParams
impl Serialize for ReplayXhrParams
impl StructuralPartialEq for ReplayXhrParams
Auto Trait Implementations§
impl Freeze for ReplayXhrParams
impl RefUnwindSafe for ReplayXhrParams
impl Send for ReplayXhrParams
impl Sync for ReplayXhrParams
impl Unpin for ReplayXhrParams
impl UnwindSafe for ReplayXhrParams
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